[ALSA] sound/usb/usbaudio.c: coding style
Putting space between ! and variable is a strange coding style, fix that, also make it fit into 80 columns where that is easy. Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
committed by
Takashi Iwai
parent
2a56f51bcc
commit
07f51a7274
@@ -65,8 +65,9 @@ MODULE_SUPPORTED_DEVICE("{{Generic,USB Audio}}");
|
||||
static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
|
||||
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
|
||||
static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
|
||||
static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Vendor ID for this card */
|
||||
static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 }; /* Product ID for this card */
|
||||
/* Vendor/product IDs for this card */
|
||||
static int vid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
|
||||
static int pid[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = -1 };
|
||||
static int nrpacks = 8; /* max. number of packets per urb */
|
||||
static int async_unlink = 1;
|
||||
static int device_setup[SNDRV_CARDS]; /* device parameter for this card*/
|
||||
@@ -3618,7 +3619,7 @@ static void *snd_usb_audio_probe(struct usb_device *dev,
|
||||
break;
|
||||
}
|
||||
if (!chip) {
|
||||
snd_printk(KERN_ERR "no available usb audio device\n");
|
||||
printk(KERN_ERR "no available usb audio device\n");
|
||||
goto __error;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user