From: Daniel Mack Date: Sat, 16 Jun 2012 14:58:36 +0000 (+0200) Subject: ALSA: 6fire: use NULL instead of 0 for pointer assignment X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0b1d8e09089b69ac2e8be203fb28cd07cfe035b2;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git ALSA: 6fire: use NULL instead of 0 for pointer assignment Signed-off-by: Daniel Mack Cc: Torsten Schenk Signed-off-by: Takashi Iwai --- 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( int ret; u8 data; struct usb_device *device = interface_to_usbdev(intf); - const struct firmware *fw = 0; + const struct firmware *fw = NULL; struct ihex_record *rec = kmalloc(sizeof(struct ihex_record), GFP_KERNEL);