diff options
author | Jeff Dike <jdike@addtoit.com> | 2006-09-27 01:50:33 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 08:26:15 -0700 |
commit | 5e7672ec3f059f764fcc5c78216e24bb16c44dba (patch) | |
tree | ea0e36468e19fbc3c9ff79d6378b5d8e7eef8ea3 /arch/um/drivers/daemon.h | |
parent | 48af05ed54ddf8dc6eceea4f009e063d7e784b37 (diff) | |
download | blackbird-op-linux-5e7672ec3f059f764fcc5c78216e24bb16c44dba.tar.gz blackbird-op-linux-5e7672ec3f059f764fcc5c78216e24bb16c44dba.zip |
[PATCH] uml: const more data
Make lots of structures const in order to make it obvious that they need no
locking.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/drivers/daemon.h')
-rw-r--r-- | arch/um/drivers/daemon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/daemon.h b/arch/um/drivers/daemon.h index 7326c42f7ef9..3bc3cf6b94aa 100644 --- a/arch/um/drivers/daemon.h +++ b/arch/um/drivers/daemon.h @@ -18,7 +18,7 @@ struct daemon_data { void *dev; }; -extern struct net_user_info daemon_user_info; +extern const struct net_user_info daemon_user_info; extern int daemon_user_write(int fd, void *buf, int len, struct daemon_data *pri); |