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-Tag: v3.5-rc7~2^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b1d8e09089b69ac2e8be203fb28cd07cfe035b2;p=profile%2Fivi%2Fkernel-x86-ivi.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 6f9715a..56ad923 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);