summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorEzequiel Garcia <ezequiel.garcia@free-electrons.com>2014-11-10 15:19:44 -0300
committerSascha Hauer <s.hauer@pengutronix.de>2014-11-11 14:59:43 +0100
commitd2731007bbc42d3e44a2e4518194089c80588fd0 (patch)
tree06d85e30ff25b7895ce310244a6d378fb3c7b74c /drivers
parent6638760c225c37f90e822ebf4dd8f0d2cd0b0ef3 (diff)
downloadbarebox-d2731007bbc42d3e44a2e4518194089c80588fd0.tar.gz
barebox-d2731007bbc42d3e44a2e4518194089c80588fd0.tar.xz
net: phy: marvell: Fix array identation
Just a cosmetic clean-up to fix the indentation of the entries in the phys array. Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/phy/marvell.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c
index f2bc64925d..2fb4ad2f23 100644
--- a/drivers/net/phy/marvell.c
+++ b/drivers/net/phy/marvell.c
@@ -166,15 +166,15 @@ static int m88e1121_config_init(struct phy_device *phydev)
}
static struct phy_driver marvell_phys[] = {
-{
- .phy_id = MARVELL_PHY_ID_88E1121R,
- .phy_id_mask = MARVELL_PHY_ID_MASK,
- .drv.name = "Marvell 88E1121R",
- .features = PHY_GBIT_FEATURES,
- .config_init = m88e1121_config_init,
- .config_aneg = genphy_config_aneg,
- .read_status = marvell_read_status,
-},
+ {
+ .phy_id = MARVELL_PHY_ID_88E1121R,
+ .phy_id_mask = MARVELL_PHY_ID_MASK,
+ .drv.name = "Marvell 88E1121R",
+ .features = PHY_GBIT_FEATURES,
+ .config_init = m88e1121_config_init,
+ .config_aneg = genphy_config_aneg,
+ .read_status = marvell_read_status,
+ },
};
static int __init marvell_phy_init(void)