diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-05 09:19:00 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-05 09:20:44 +0100 |
commit | 8be03a7177c36bfc05bbe9f4949cdeba57f1c2ab (patch) | |
tree | e3cb9e7ca17fcc1af937fc837ca18cdbcd135a58 /sound/usb/format.c | |
parent | Merge branch 'for-linus' into for-next (diff) | |
download | linux-8be03a7177c36bfc05bbe9f4949cdeba57f1c2ab.tar.xz linux-8be03a7177c36bfc05bbe9f4949cdeba57f1c2ab.zip |
ALSA: usb-audio: Use lower hex numbers for IDs
For consistency reason, make all hex numbers with lower alphabets for
USB ID entries. It improves grep-ability and reduces careless
mistakes.
Link: https://lore.kernel.org/r/20200105081900.21870-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/format.c')
-rw-r--r-- | sound/usb/format.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/usb/format.c b/sound/usb/format.c index d79db71305f6..5e7c4c7beff2 100644 --- a/sound/usb/format.c +++ b/sound/usb/format.c @@ -292,10 +292,10 @@ static int line6_parse_audio_format_rates_quirk(struct snd_usb_audio *chip, struct audioformat *fp) { switch (chip->usb_id) { - case USB_ID(0x0E41, 0x4241): /* Line6 Helix */ - case USB_ID(0x0E41, 0x4242): /* Line6 Helix Rack */ - case USB_ID(0x0E41, 0x4244): /* Line6 Helix LT */ - case USB_ID(0x0E41, 0x4246): /* Line6 HX-Stomp */ + case USB_ID(0x0e41, 0x4241): /* Line6 Helix */ + case USB_ID(0x0e41, 0x4242): /* Line6 Helix Rack */ + case USB_ID(0x0e41, 0x4244): /* Line6 Helix LT */ + case USB_ID(0x0e41, 0x4246): /* Line6 HX-Stomp */ /* supported rates: 48Khz */ kfree(fp->rate_table); fp->rate_table = kmalloc(sizeof(int), GFP_KERNEL); |