diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-12-06 23:36:20 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:33 -0500 |
commit | f4330002d11f032559954cbff68a5cad95b6d27f (patch) | |
tree | 80e89bfdb2a9842592850270a6e825a277417484 /drivers/block/paride/friq.c | |
parent | 3bd0f6943520e459659d10f3282285e43d3990f1 (diff) |
[PATCH] paride: rename pi_register() and pi_unregister()
We're about to change the semantics of pi_register()'s return value, so
rename it to something else first, so that any unconverted code reliaby
breaks.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/block/paride/friq.c')
-rw-r--r-- | drivers/block/paride/friq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/paride/friq.c b/drivers/block/paride/friq.c index 5ea2904d2815..e9edfa2e3a6c 100644 --- a/drivers/block/paride/friq.c +++ b/drivers/block/paride/friq.c | |||
@@ -263,12 +263,12 @@ static struct pi_protocol friq = { | |||
263 | 263 | ||
264 | static int __init friq_init(void) | 264 | static int __init friq_init(void) |
265 | { | 265 | { |
266 | return pi_register(&friq)-1; | 266 | return paride_register(&friq)-1; |
267 | } | 267 | } |
268 | 268 | ||
269 | static void __exit friq_exit(void) | 269 | static void __exit friq_exit(void) |
270 | { | 270 | { |
271 | pi_unregister(&friq); | 271 | paride_unregister(&friq); |
272 | } | 272 | } |
273 | 273 | ||
274 | MODULE_LICENSE("GPL"); | 274 | MODULE_LICENSE("GPL"); |