summaryrefslogtreecommitdiffstats
path: root/net/core/net-sysfs.c
diff options
context:
space:
mode:
authorstephen hemminger <shemminger@vyatta.com>2010-08-31 12:14:13 +0000
committerDavid S. Miller <davem@davemloft.net>2010-09-01 18:12:20 -0700
commitfa50d6457691d5c2d8a3430abf950435ef129cf1 (patch)
treeaeb475912c46e936b89e85e955215ec5b1e9e620 /net/core/net-sysfs.c
parent6267300e979e0fa912d871c7727c168bf3dbb37a (diff)
downloadlinux-0-day-fa50d6457691d5c2d8a3430abf950435ef129cf1.tar.gz
linux-0-day-fa50d6457691d5c2d8a3430abf950435ef129cf1.tar.xz
net: make rx_queue sysfs_ops const
Signed-off-by: Stephen Hemminger <shemminger@vyatta.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 7d748542d97ea..76485a3f910bf 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -515,7 +515,7 @@ static ssize_t rx_queue_attr_store(struct kobject *kobj, struct attribute *attr,
return attribute->store(queue, attribute, buf, count);
}
-static struct sysfs_ops rx_queue_sysfs_ops = {
+static const struct sysfs_ops rx_queue_sysfs_ops = {
.show = rx_queue_attr_show,
.store = rx_queue_attr_store,
};