diff options
Diffstat (limited to 'include/linux/nls.h')
-rw-r--r-- | include/linux/nls.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/nls.h b/include/linux/nls.h index 816c04ad7381..6a882208301a 100644 --- a/include/linux/nls.h +++ b/include/linux/nls.h | |||
@@ -7,13 +7,13 @@ | |||
7 | typedef __u16 wchar_t; | 7 | typedef __u16 wchar_t; |
8 | 8 | ||
9 | struct nls_table { | 9 | struct nls_table { |
10 | char *charset; | 10 | const char *charset; |
11 | char *alias; | 11 | const char *alias; |
12 | int (*uni2char) (wchar_t uni, unsigned char *out, int boundlen); | 12 | int (*uni2char) (wchar_t uni, unsigned char *out, int boundlen); |
13 | int (*char2uni) (const unsigned char *rawstring, int boundlen, | 13 | int (*char2uni) (const unsigned char *rawstring, int boundlen, |
14 | wchar_t *uni); | 14 | wchar_t *uni); |
15 | unsigned char *charset2lower; | 15 | const unsigned char *charset2lower; |
16 | unsigned char *charset2upper; | 16 | const unsigned char *charset2upper; |
17 | struct module *owner; | 17 | struct module *owner; |
18 | struct nls_table *next; | 18 | struct nls_table *next; |
19 | }; | 19 | }; |