From: stephen hemminger Date: Tue, 31 Aug 2010 12:14:13 +0000 (+0000) Subject: net: make rx_queue sysfs_ops const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fa50d6457691d5c2d8a3430abf950435ef129cf1;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git net: make rx_queue sysfs_ops const Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c index 7d748542d97e..76485a3f910b 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, };