diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2016-08-18 22:30:14 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-20 00:15:36 (GMT) |
commit | d9338023fb8e60aa09014034a993f8ddc86c65fa (patch) | |
tree | 0ddb59520c731a0940d9de4a92cffc90b2296d38 /net/dsa | |
parent | a85fad1436b0fd0fe9d7f1d23387e83e7cd21c0a (diff) | |
download | linux-d9338023fb8e60aa09014034a993f8ddc86c65fa.tar.xz |
net: dsa: bcm_sf2: Make it a real platform device driver
The Broadcom Starfighter 2 switch driver should be a proper platform
driver, now that the DSA code has been updated to allow that, register a
switch device, feed it with the proper configuration data coming from
Device Tree and register our switch device with DSA.
The bulk of the changes consist in moving what bcm_sf2_sw_setup() did
into the platform driver probe function.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/dsa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c index 9f5b472..8bda74e 100644 --- a/net/dsa/dsa.c +++ b/net/dsa/dsa.c @@ -1088,7 +1088,6 @@ static int dsa_resume(struct device *d) static SIMPLE_DEV_PM_OPS(dsa_pm_ops, dsa_suspend, dsa_resume); static const struct of_device_id dsa_of_match_table[] = { - { .compatible = "brcm,bcm7445-switch-v4.0" }, { .compatible = "marvell,dsa", }, {} }; |