diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-19 01:28:40 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-19 01:28:40 +0000 |
commit | 8abb719409c9060a7c0676f76e9182c1e0b8ca46 (patch) | |
tree | b88cc5a6cd513a04a512b7e6215c873c90a1c5dd /fs/nls/nls_iso8859-4.c | |
parent | f01bd7aeafd95a08aafc9e3636bb26974df69d82 (diff) |
Merge with 2.3.99-pre1.
Diffstat (limited to 'fs/nls/nls_iso8859-4.c')
-rw-r--r-- | fs/nls/nls_iso8859-4.c | 31 |
1 files changed, 6 insertions, 25 deletions
diff --git a/fs/nls/nls_iso8859-4.c b/fs/nls/nls_iso8859-4.c index 18ef00e49..63a105d7e 100644 --- a/fs/nls/nls_iso8859-4.c +++ b/fs/nls/nls_iso8859-4.c @@ -279,46 +279,27 @@ static unsigned char charset2upper[256] = { 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xff, /* 0xf8-0xff */ }; - -static void inc_use_count(void) -{ - MOD_INC_USE_COUNT; -} - -static void dec_use_count(void) -{ - MOD_DEC_USE_COUNT; -} - static struct nls_table table = { "iso8859-4", page_uni2charset, charset2uni, charset2lower, charset2upper, - inc_use_count, - dec_use_count, - NULL + THIS_MODULE, }; -int init_nls_iso8859_4(void) +static int __init init_nls_iso8859_4(void) { return register_nls(&table); } -#ifdef MODULE -int init_module(void) -{ - return init_nls_iso8859_4(); -} - - -void cleanup_module(void) +static void __exit exit_nls_iso8859_4(void) { unregister_nls(&table); - return; } -#endif + +module_init(init_nls_iso8859_4) +module_exit(exit_nls_iso8859_4) /* * Overrides for Emacs so that we follow Linus's tabbing style. |