diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-11-23 02:00:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-11-23 02:00:47 +0000 |
commit | 06615f62b17d7de6e12d2f5ec6b88cf30af08413 (patch) | |
tree | 8766f208847d4876a6db619aebbf54d53b76eb44 /drivers/cdrom | |
parent | fa9bdb574f4febb751848a685d9a9017e04e1d53 (diff) |
Merge with Linux 2.4.0-test10.
Diffstat (limited to 'drivers/cdrom')
-rw-r--r-- | drivers/cdrom/cdrom.c | 18 | ||||
-rw-r--r-- | drivers/cdrom/sbpcd.c | 34 |
2 files changed, 26 insertions, 26 deletions
diff --git a/drivers/cdrom/cdrom.c b/drivers/cdrom/cdrom.c index 912402678..23fe03584 100644 --- a/drivers/cdrom/cdrom.c +++ b/drivers/cdrom/cdrom.c @@ -267,15 +267,15 @@ #include <asm/uaccess.h> /* used to tell the module to turn on full debugging messages */ -static int debug = 0; +static int debug; /* used to keep tray locked at all times */ -static int keeplocked = 0; +static int keeplocked; /* default compatibility mode */ static int autoclose=1; -static int autoeject=0; +static int autoeject; static int lockdoor = 1; /* will we ever get to use this... sigh. */ -static int check_media_type = 0; +static int check_media_type; MODULE_PARM(debug, "i"); MODULE_PARM(autoclose, "i"); MODULE_PARM(autoeject, "i"); @@ -326,8 +326,8 @@ int cdrom_get_next_writable(kdev_t dev, long *next_writable); #ifdef CONFIG_SYSCTL static void cdrom_sysctl_register(void); #endif /* CONFIG_SYSCTL */ -static struct cdrom_device_info *topCdromPtr = NULL; -static devfs_handle_t devfs_handle = NULL; +static struct cdrom_device_info *topCdromPtr; +static devfs_handle_t devfs_handle; struct block_device_operations cdrom_fops = { @@ -346,12 +346,12 @@ struct block_device_operations cdrom_fops = int register_cdrom(struct cdrom_device_info *cdi) { - static char banner_printed = 0; + static char banner_printed; int major = MAJOR(cdi->dev); struct cdrom_device_ops *cdo = cdi->ops; int *change_capability = (int *)&cdo->capability; /* hack */ char vname[16]; - static unsigned int cdrom_counter = 0; + static unsigned int cdrom_counter; cdinfo(CD_OPEN, "entering register_cdrom\n"); @@ -2566,7 +2566,7 @@ static struct ctl_table_header *cdrom_sysctl_header; static void cdrom_sysctl_register(void) { - static int initialized = 0; + static int initialized; if (initialized == 1) return; diff --git a/drivers/cdrom/sbpcd.c b/drivers/cdrom/sbpcd.c index 07e97a1d7..4cec5680d 100644 --- a/drivers/cdrom/sbpcd.c +++ b/drivers/cdrom/sbpcd.c @@ -561,9 +561,9 @@ static int sbpcd_debug = 0 & ((1<<DBG_INF) | static int sbpcd_ioaddr = CDROM_PORT; /* default I/O base address */ static int sbpro_type = SBPRO; -static unsigned char setup_done = 0; -static unsigned char f_16bit = 0; -static unsigned char do_16bit = 0; +static unsigned char setup_done; +static unsigned char f_16bit; +static unsigned char do_16bit; static int CDo_command, CDo_reset; static int CDo_sel_i_d, CDo_enable; static int CDi_info, CDi_status, CDi_data; @@ -575,7 +575,7 @@ static struct cdrom_subchnl SC; static struct cdrom_volctrl volctrl; static struct cdrom_read_audio read_audio; -static unsigned char msgnum=0; +static unsigned char msgnum; static char msgbuf[80]; static const char *str_sb = "SoundBlaster"; @@ -618,26 +618,26 @@ static u_char familyL[]="LCS-7260"; /* Longshine LCS-7260 */ static u_char familyT[]="CD-55"; /* TEAC CD-55A */ static u_char familyV[]="ECS-AT"; /* ECS Vertos 100 */ -static u_int recursion=0; /* internal testing only */ -static u_int fatal_err=0; /* internal testing only */ -static u_int response_count=0; +static u_int recursion; /* internal testing only */ +static u_int fatal_err; /* internal testing only */ +static u_int response_count; static u_int flags_cmd_out; -static u_char cmd_type=0; +static u_char cmd_type; static u_char drvcmd[10]; static u_char infobuf[20]; static u_char xa_head_buf[CD_XA_HEAD]; static u_char xa_tail_buf[CD_XA_TAIL]; #if OLD_BUSY -static volatile u_char busy_data=0; -static volatile u_char busy_audio=0; /* true semaphores would be safer */ +static volatile u_char busy_data; +static volatile u_char busy_audio; /* true semaphores would be safer */ #endif OLD_BUSY static DECLARE_MUTEX(ioctl_read_sem); static u_long timeout; -static volatile u_char timed_out_delay=0; -static volatile u_char timed_out_data=0; +static volatile u_char timed_out_delay; +static volatile u_char timed_out_data; #if 0 -static volatile u_char timed_out_audio=0; +static volatile u_char timed_out_audio; #endif static u_int datarate= 1000000; static u_int maxtim16=16000000; @@ -656,15 +656,15 @@ static int n_retries=6; #endif /*==========================================================================*/ -static int ndrives=0; +static int ndrives; static u_char drv_pattern[NR_SBPCD]={speed_auto,speed_auto,speed_auto,speed_auto}; -static int sbpcd_blocksizes[NR_SBPCD] = {0, }; +static int sbpcd_blocksizes[NR_SBPCD]; /*==========================================================================*/ /* * drive space begins here (needed separate for each unit) */ -static int d=0; /* DriveStruct index: drive number */ +static int d; /* DriveStruct index: drive number */ static struct { char drv_id; /* "jumpered" drive ID or -1 */ @@ -5654,7 +5654,7 @@ static int __init config_spea(void) * Called once at boot or load time. */ -static devfs_handle_t devfs_handle = NULL; +static devfs_handle_t devfs_handle; #ifdef MODULE int __init __SBPCD_INIT(void) |