diff options
author | Scott Feldman <sfeldma@gmail.com> | 2015-05-13 21:16:50 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-13 21:20:59 +0300 |
commit | 42275bd8fcb351f951781d8882f359d25976824b (patch) | |
tree | 9689357f34d19a10544b03047df26b2031364664 /net/core/net-sysfs.c | |
parent | 1f7bd29bc0559aedae857639ca391c815e47f1d9 (diff) | |
download | linux-42275bd8fcb351f951781d8882f359d25976824b.tar.xz |
switchdev: don't use anonymous union on switchdev attr/obj structs
Older gcc versions (e.g. gcc version 4.4.6) don't like anonymous unions
which was causing build issues on the newly added switchdev attr/obj
structs. Fix this by using named union on structs.
Signed-off-by: Scott Feldman <sfeldma@gmail.com>
Reported-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net-sysfs.c')
-rw-r--r-- | net/core/net-sysfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index 5a9ce96f6d27..18b34d771ed4 100644 --- a/net/core/net-sysfs.c +++ b/net/core/net-sysfs.c @@ -465,8 +465,8 @@ static ssize_t phys_switch_id_show(struct device *dev, ret = switchdev_port_attr_get(netdev, &attr); if (!ret) - ret = sprintf(buf, "%*phN\n", attr.ppid.id_len, - attr.ppid.id); + ret = sprintf(buf, "%*phN\n", attr.u.ppid.id_len, + attr.u.ppid.id); } rtnl_unlock(); |