]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'phy-led-triggers'
authorDavid S. Miller <davem@davemloft.net>
Tue, 18 Oct 2016 15:56:31 +0000 (11:56 -0400)
committerDavid S. Miller <davem@davemloft.net>
Tue, 18 Oct 2016 15:56:31 +0000 (11:56 -0400)
commit2c31b8eeda708df88f1d4fbd82a8f2b77faaeb80
treeab99eed259b226f6294a4540380e15ae9a17432b
parent2406983313a4a72e31de313c619d188f6c82a0c8
parent9fe4f375929aee8641328bcdd092a27be7d1d654
Merge branch 'phy-led-triggers'

Zach Brown says:

====================
Add support for led triggers on phy link state change

Fix skge driver that declared enum contants that conflicted with enum
constants in linux/leds.h

Create function that encapsulates actions taken during the adjust phy link step
of phy state changes.

Create function that provides list of speeds currently supported by the phy.

Add support for led triggers on phy link state changes by adding
a config option. When set the config option will create a set of led triggers
for each phy device. Users can use the led triggers to represent link state
changes on the phy.

v2:
 * New patch that creates phy_adjust_link function to encapsulate actions taken
   when adjusting phy link during phy state changes
 * led trigger speed strings changed to match existing phy speed strings
 * New function that maps speeds to led triggers
 * Replace magic constants with definitions when declaring trigger name
   buffer and number of triggers.
v3:
 * Changed LED_ON to LED_REG_ON in skge driver to avoid possible future
   conflict and improve consistency.
 * Dropped rtl8712 patch that was accepted separately.
v4:
 * tweaked commit message
v5
 * Changed commit message to explain relationship between the new triggers and
   leds driven by phys.
 * Added new patch that creates phy_supported_speeds function.
 * Moved phy_leds_triggers_register and phy_leds_triggers_unregister to
   phy_attach and phy_detach respectively. This change is so the
   phydev->supported field will be filled by the time the triggers are
   registered.
 * Changed hardcoded list of triggers to dynamic list determined by speeds
   return by phy_supported_speeds.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>