1. 16 5月, 2015 1 次提交
  2. 15 5月, 2015 2 次提交
  3. 13 5月, 2015 1 次提交
  4. 11 5月, 2015 1 次提交
  5. 10 5月, 2015 1 次提交
    • J
      net: amd-xgbe: Add hardware dependency · 74a78b15
      Jean Delvare 提交于
      The amd-xgbe driver currently only works with the Seattle SoC, which
      is ARM64 architecture, so there is no point in building this driver on
      other architectures except for build testing purpose. The dependency
      list can be updated later if the driver ever supports other
      architectures.
      Signed-off-by: NJean Delvare <jdelvare@suse.de>
      Cc: Tom Lendacky <thomas.lendacky@amd.com>
      Cc: Florian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      74a78b15
  6. 28 4月, 2015 1 次提交
  7. 25 4月, 2015 1 次提交
  8. 09 4月, 2015 1 次提交
  9. 04 4月, 2015 1 次提交
    • S
      add fixed_phy_update_state() - update state of fixed_phy · a3bebdce
      Stas Sergeev 提交于
      Currently fixed_phy uses a callback to periodically poll the link state.
      This patch adds the fixed_phy_update_state() API.
      It solves the following problems:
      - On link state interrupt, MAC driver can't update status.
      Instead it needs to provide the callback to periodically query
      the HW about the link state. It is more efficient to update status
      after interrupt.
      - The callback needs to be unregistered before phy_disconnect(),
      or otherwise it will be called with net_dev==NULL. phy_disconnect()
      does not have enough info to unregister the callback automatically.
      - The callback needs to be registered before of_phy_connect() to
      avoid running with outdated state, but of_phy_connect() returns the
      phy_device pointer, which is needed to register the callback. Registering
      it before of_phy_connect() will therefore require a hack to get the
      pointer earlier.
      
      Overall, this addition makes the subsequent patch that implements
      SGMII link status for mvneta, much cleaner.
      
      CC: Florian Fainelli <f.fainelli@gmail.com>
      CC: netdev@vger.kernel.org
      CC: linux-kernel@vger.kernel.org
      Signed-off-by: NStas Sergeev <stsp@users.sourceforge.net>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a3bebdce
  10. 02 4月, 2015 1 次提交
  11. 01 4月, 2015 1 次提交
  12. 21 3月, 2015 3 次提交
  13. 18 3月, 2015 1 次提交
  14. 10 3月, 2015 1 次提交
  15. 07 3月, 2015 1 次提交
  16. 26 2月, 2015 1 次提交
  17. 21 2月, 2015 1 次提交
  18. 15 2月, 2015 1 次提交
  19. 27 1月, 2015 4 次提交
  20. 26 1月, 2015 1 次提交
  21. 17 1月, 2015 7 次提交
  22. 27 12月, 2014 1 次提交
  23. 17 12月, 2014 1 次提交
    • D
      net: Allow FIXED_PHY to be modular. · 6539c44d
      David S. Miller 提交于
      Otherwise we get things like:
      
      warning: (NET_DSA_BCM_SF2 && BCMGENET && SYSTEMPORT) selects FIXED_PHY which has unmet direct dependencies (NETDEVICES && PHYLIB=y)
      
      In order to make this work we have to rename fixed.c to fixed_phy.c
      because the regulator drivers already have a module named "fixed.o".
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      6539c44d
  24. 12 12月, 2014 1 次提交
  25. 09 12月, 2014 1 次提交
  26. 28 11月, 2014 1 次提交
  27. 22 11月, 2014 2 次提交