From: John Crispin Date: Wed, 29 Oct 2014 18:51:06 +0000 (+0000) Subject: swconfig: "swconfig list" shows devices in reverse order X-Git-Tag: reboot~5483 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ab5d70e046ffccaf8547576c3a9910af0a0ba9fb;p=oweals%2Fopenwrt.git swconfig: "swconfig list" shows devices in reverse order Boards that have more than one swconfig enabled switch will show the devices in reverse order when call swconfig list. Fix this by using list_add_tail(). Signed-off-by: John Crispin SVN-Revision: 43106 --- diff --git a/target/linux/generic/files/drivers/net/phy/swconfig.c b/target/linux/generic/files/drivers/net/phy/swconfig.c index ba9136c34f..de1dde22cf 100644 --- a/target/linux/generic/files/drivers/net/phy/swconfig.c +++ b/target/linux/generic/files/drivers/net/phy/swconfig.c @@ -1079,7 +1079,7 @@ register_switch(struct switch_dev *dev, struct net_device *netdev) /* fill device name */ snprintf(dev->devname, IFNAMSIZ, SWCONFIG_DEVNAME, i); - list_add(&dev->dev_list, &swdevs); + list_add_last(&dev->dev_list, &swdevs); swconfig_unlock(); err = swconfig_create_led_trigger(dev);