diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-11-29 20:18:46 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-11-29 20:18:46 +0000 |
commit | 74a353f64fc032358db34636019c16b469d16f0a (patch) | |
tree | 0a5fbee510a73a230c6cb423b392ff31c50c2f0f /target/linux/generic | |
parent | c1fb0e5e39e1e49f95e6004af1de043a9fe04814 (diff) | |
download | upstream-74a353f64fc032358db34636019c16b469d16f0a.tar.gz upstream-74a353f64fc032358db34636019c16b469d16f0a.tar.bz2 upstream-74a353f64fc032358db34636019c16b469d16f0a.zip |
generic: ar8216: remove trailing whitespaces
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 38951
Diffstat (limited to 'target/linux/generic')
-rw-r--r-- | target/linux/generic/files/drivers/net/phy/ar8216.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c index 3a696c2986..00d4fc214d 100644 --- a/target/linux/generic/files/drivers/net/phy/ar8216.c +++ b/target/linux/generic/files/drivers/net/phy/ar8216.c @@ -1501,7 +1501,7 @@ static void ar8327_set_mirror_regs(struct ar8xxx_priv *priv) { int port; - + /* reset all mirror registers */ ar8xxx_rmw(priv, AR8327_REG_FWD_CTRL0, AR8327_FWD_CTRL0_MIRROR_PORT, @@ -1652,9 +1652,9 @@ ar8xxx_sw_hw_apply(struct switch_dev *dev) priv->chip->setup_port(priv, i, egress, ingress, portmask[i], pvid); } - + ar8xxx_set_mirror_regs(priv); - + mutex_unlock(&priv->reg_mutex); return 0; } @@ -1680,7 +1680,7 @@ ar8xxx_sw_reset_switch(struct switch_dev *dev) priv->mirror_tx = false; priv->source_port = 0; priv->monitor_port = 0; - + priv->chip->init_globals(priv); mutex_unlock(&priv->reg_mutex); @@ -1722,7 +1722,7 @@ ar8xxx_sw_set_mirror_rx_enable(struct switch_dev *dev, struct switch_val *val) { struct ar8xxx_priv *priv = swdev_to_ar8xxx(dev); - + mutex_lock(&priv->reg_mutex); priv->mirror_rx = !!val->value.i; ar8xxx_set_mirror_regs(priv); @@ -1772,7 +1772,7 @@ ar8xxx_sw_set_mirror_monitor_port(struct switch_dev *dev, struct switch_val *val) { struct ar8xxx_priv *priv = swdev_to_ar8xxx(dev); - + mutex_lock(&priv->reg_mutex); priv->monitor_port = val->value.i; ar8xxx_set_mirror_regs(priv); @@ -1797,7 +1797,7 @@ ar8xxx_sw_set_mirror_source_port(struct switch_dev *dev, struct switch_val *val) { struct ar8xxx_priv *priv = swdev_to_ar8xxx(dev); - + mutex_lock(&priv->reg_mutex); priv->source_port = val->value.i; ar8xxx_set_mirror_regs(priv); @@ -1931,7 +1931,7 @@ static struct switch_attr ar8xxx_sw_attr_globals[] = { .description = "Mirror monitor port", .set = ar8xxx_sw_set_mirror_monitor_port, .get = ar8xxx_sw_get_mirror_monitor_port, - .max = AR8216_NUM_PORTS - 1 + .max = AR8216_NUM_PORTS - 1 }, { .type = SWITCH_TYPE_INT, @@ -1980,7 +1980,7 @@ static struct switch_attr ar8327_sw_attr_globals[] = { .description = "Mirror monitor port", .set = ar8xxx_sw_set_mirror_monitor_port, .get = ar8xxx_sw_get_mirror_monitor_port, - .max = AR8327_NUM_PORTS - 1 + .max = AR8327_NUM_PORTS - 1 }, { .type = SWITCH_TYPE_INT, |