diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-09-28 22:25:29 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-09-28 22:25:29 +0000 |
commit | 0ae8dceaebe3659ee0c3352c08125f403e77ebca (patch) | |
tree | 5085c389f09da78182b899d19fe1068b619a69dd /drivers/block/ataflop.c | |
parent | 273767781288c35c9d679e908672b9996cda4c34 (diff) |
Merge with 2.3.10.
Diffstat (limited to 'drivers/block/ataflop.c')
-rw-r--r-- | drivers/block/ataflop.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/block/ataflop.c b/drivers/block/ataflop.c index f105efd68..cf408b8c7 100644 --- a/drivers/block/ataflop.c +++ b/drivers/block/ataflop.c @@ -1771,7 +1771,7 @@ static int fd_ioctl(struct inode *inode, struct file *filp, /* Initialize the 'unit' variable for drive 'drive' */ -__initfunc(static void fd_probe( int drive )) +static void __init fd_probe( int drive ) { UD.connected = 0; UDT = NULL; @@ -1814,7 +1814,7 @@ __initfunc(static void fd_probe( int drive )) * declared absent. */ -__initfunc(static int fd_test_drive_present( int drive )) +static int __init fd_test_drive_present( int drive ) { unsigned long timeout; unsigned char status; @@ -1861,7 +1861,7 @@ __initfunc(static int fd_test_drive_present( int drive )) * floppies, additionally start the disk-change and motor-off timers. */ -__initfunc(static void config_types( void )) +static void __init config_types( void ) { int drive, cnt = 0; @@ -2006,7 +2006,7 @@ static struct file_operations floppy_fops = { floppy_revalidate, /* revalidate */ }; -__initfunc(int atari_floppy_init (void)) +int __init atari_floppy_init (void) { int i; @@ -2075,7 +2075,7 @@ __initfunc(int atari_floppy_init (void)) } -__initfunc(void atari_floppy_setup( char *str, int *ints )) +void __init atari_floppy_setup( char *str, int *ints ) { int i; |