Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 07f51a72 authored by Pavel Machek's avatar Pavel Machek Committed by Takashi Iwai
Browse files

[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: default avatarPavel Machek <pavel@suse.cz>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 2a56f51b
Loading
Loading
Loading
Loading
+32 −31
Original line number Diff line number Diff line
@@ -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;
		}
	}