diff options
author | Daniel Mack <zonque@gmail.com> | 2012-06-16 10:58:36 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-06-18 03:36:38 -0400 |
commit | 0b1d8e09089b69ac2e8be203fb28cd07cfe035b2 (patch) | |
tree | 0bb7eedc5472107255a79172b2fdffec79b1b2f6 /sound | |
parent | b4a91cf05c33d4ab5b2b3738a257a3fe49b462bd (diff) |
ALSA: 6fire: use NULL instead of 0 for pointer assignment
Signed-off-by: Daniel Mack <zonque@gmail.com>
Cc: Torsten Schenk <torsten.schenk@zoho.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/usb/6fire/firmware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/6fire/firmware.c b/sound/usb/6fire/firmware.c index 6f9715ab32fe..56ad923bf6b5 100644 --- a/sound/usb/6fire/firmware.c +++ b/sound/usb/6fire/firmware.c | |||
@@ -209,7 +209,7 @@ static int usb6fire_fw_ezusb_upload( | |||
209 | int ret; | 209 | int ret; |
210 | u8 data; | 210 | u8 data; |
211 | struct usb_device *device = interface_to_usbdev(intf); | 211 | struct usb_device *device = interface_to_usbdev(intf); |
212 | const struct firmware *fw = 0; | 212 | const struct firmware *fw = NULL; |
213 | struct ihex_record *rec = kmalloc(sizeof(struct ihex_record), | 213 | struct ihex_record *rec = kmalloc(sizeof(struct ihex_record), |
214 | GFP_KERNEL); | 214 | GFP_KERNEL); |
215 | 215 | ||