aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files/drivers/net
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-05-27 17:09:47 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-05-27 17:09:47 +0000
commit54d14f8850466bb81071416d2bc41c5f4692255a (patch)
tree3033eeb01e359462ef9655287d4607fedf0c1dbd /target/linux/generic/files/drivers/net
parente4f7489ec15f86110cb60a39ef3591c6f77ede50 (diff)
downloadupstream-54d14f8850466bb81071416d2bc41c5f4692255a.tar.gz
upstream-54d14f8850466bb81071416d2bc41c5f4692255a.tar.bz2
upstream-54d14f8850466bb81071416d2bc41c5f4692255a.zip
generic: rtl8367: rename a misnamed variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31917 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/files/drivers/net')
-rw-r--r--target/linux/generic/files/drivers/net/phy/rtl8367.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/rtl8367.c b/target/linux/generic/files/drivers/net/phy/rtl8367.c
index f4ef0c14f4..4f2ba6327b 100644
--- a/target/linux/generic/files/drivers/net/phy/rtl8367.c
+++ b/target/linux/generic/files/drivers/net/phy/rtl8367.c
@@ -1538,7 +1538,7 @@ static struct switch_attr rtl8367_vlan[] = {
},
};
-static const struct switch_dev_ops rtl8366m_ops = {
+static const struct switch_dev_ops rtl8367_sw_ops = {
.attr_global = {
.attr = rtl8367_globals,
.n_attr = ARRAY_SIZE(rtl8367_globals),
@@ -1569,7 +1569,7 @@ static int rtl8367_switch_init(struct rtl8366_smi *smi)
dev->cpu_port = RTL8367_CPU_PORT_NUM;
dev->ports = RTL8367_NUM_PORTS;
dev->vlans = RTL8367_NUM_VIDS;
- dev->ops = &rtl8366m_ops;
+ dev->ops = &rtl8367_sw_ops;
dev->alias = dev_name(smi->parent);
err = register_switch(dev, NULL);