aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/transport_class.h
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-06-24 10:06:31 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 09:50:47 -0700
commita4dbd6740df0872cdf0a86841f75beec8381964d (patch)
tree1093687845d89f8397d61e7df1ad8546a5a25225 /include/linux/transport_class.h
parentUIO: remove 'default n' from Kconfig (diff)
downloadwireguard-linux-a4dbd6740df0872cdf0a86841f75beec8381964d.tar.xz
wireguard-linux-a4dbd6740df0872cdf0a86841f75beec8381964d.zip
driver model: constify attribute groups
Let attribute group vectors be declared "const". We'd like to let most attribute metadata live in read-only sections... this is a start. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/transport_class.h')
-rw-r--r--include/linux/transport_class.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/transport_class.h b/include/linux/transport_class.h
index eaec1ea9558e..9ae8da3e6407 100644
--- a/include/linux/transport_class.h
+++ b/include/linux/transport_class.h
@@ -55,7 +55,7 @@ struct anon_transport_class cls = { \
struct transport_container {
struct attribute_container ac;
- struct attribute_group *statistics;
+ const struct attribute_group *statistics;
};
#define attribute_container_to_transport_container(x) \