diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-09-28 19:03:26 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-10-03 20:14:20 +0200 |
commit | ab9caf9e221ee1b13186a9144da26ac358f2a6f4 (patch) | |
tree | 758c8b0bf5ad1a4d922772f7ddc64101993b52ee /drivers/media/dvb | |
parent | V4L/DVB (4673): Mark the two newer ioctls as experimental (diff) | |
download | linux-ab9caf9e221ee1b13186a9144da26ac358f2a6f4.tar.xz linux-ab9caf9e221ee1b13186a9144da26ac358f2a6f4.zip |
V4L/DVB (4674): Use NULL instead of 0 for ptrs
Use NULL instead of 0 for pointer value, eliminate sparse warnings.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/dvb-usb/gp8psk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/gp8psk.c b/drivers/media/dvb/dvb-usb/gp8psk.c index 334269bd065d..7375eb20166d 100644 --- a/drivers/media/dvb/dvb-usb/gp8psk.c +++ b/drivers/media/dvb/dvb-usb/gp8psk.c @@ -219,7 +219,7 @@ static struct dvb_usb_device_properties gp8psk_properties = { .cold_ids = { &gp8psk_usb_table[0], NULL }, .warm_ids = { &gp8psk_usb_table[1], NULL }, }, - { 0 }, + { NULL }, } }; |