diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-26 11:24:46 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:41 -0400 |
commit | 031002d78b05c706272e4d5bc779f5c99d8348cf (patch) | |
tree | c14b67252ec20b7e73341eb7c7be101b6620c8fd /drivers/media/video/dabusb.c | |
parent | aeecea26234011c3fbf65ffa7d9c9525b486acab (diff) |
V4L/DVB (11226): avoid warnings for request_ihex_firmware on dabusb and vicam
drivers/media/video/usbvideo/vicam.c: In function ‘vicam_open’:
drivers/media/video/usbvideo/vicam.c:194: warning: ‘fw’ may be used uninitialized in this function
drivers/media/video/dabusb.c: In function ‘dabusb_probe’:
drivers/media/video/dabusb.c:337: warning: ‘fw’ may be used uninitialized in this function
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/dabusb.c')
-rw-r--r-- | drivers/media/video/dabusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/dabusb.c b/drivers/media/video/dabusb.c index f40c676489a4..a525a924edfa 100644 --- a/drivers/media/video/dabusb.c +++ b/drivers/media/video/dabusb.c | |||
@@ -334,7 +334,7 @@ static int dabusb_loadmem (pdabusb_t s, const char *fname) | |||
334 | { | 334 | { |
335 | int ret; | 335 | int ret; |
336 | const struct ihex_binrec *rec; | 336 | const struct ihex_binrec *rec; |
337 | const struct firmware *fw; | 337 | const struct firmware *uninitialized_var(fw); |
338 | 338 | ||
339 | dbg("Enter dabusb_loadmem (internal)"); | 339 | dbg("Enter dabusb_loadmem (internal)"); |
340 | 340 | ||