Merge branch 'macb-next'
authorDavid S. Miller <davem@davemloft.net>
Sun, 8 Mar 2015 03:31:56 +0000 (22:31 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sun, 8 Mar 2015 03:31:56 +0000 (22:31 -0500)
commitae00ec9548f7020734eef340a5f1d96720551713
tree4e7799984044b96d12ddbda9ae07d9412f365369
parent1b5ef07e3dd3972d9111650fb6e0f5a566c741d8
parent421d9df0628be16e55705573ab49d8ddb6a1d68c
Merge branch 'macb-next'

Merge branch 'macb-next'

Boris Brezillon says:

====================
net/macb: merge at91_ether driver into macb driver

The rm9200 boards use the dedicated at91_ether driver instead of the
regular macb driver.

Both the macb and at91_ether drivers can be compiled as separated
modules.
Since the at91_ether driver uses code from the macb driver, at91_ether.ko
depends on macb.ko.

However the macb.ko module always fails to load on rm9200 boards: the
macb_probe() function expects a hclk clock which doesn't exist on rm9200.
Then the at91_ether.ko can't be loaded in turn due to unresolved
dependencies.

This series of patches fix this issue by merging at91_ether into macb.

Patch 1 is fixing a problem that might happen when enabling ARM
multi-platform suppot.

Changes since v3:
- move "net: macb: remove #if defined(CONFIG_ARCH_AT91) sections" patch
  into this series to avoid dependency on other patch series.

Changes since v2:
- rebase after changed brought by commit "net: macb: remove #if
  defined(CONFIG_ARCH_AT91) sections"

Changes since v1:
- rework probe functions to share common probing logic
====================

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