Commit e6d11865 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab

V4L/DVB (7693): pvrusb2-dvb: Change usage of 0 --> NULL

Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent c5317b17
...@@ -405,7 +405,7 @@ struct pvr2_dvb_adapter *pvr2_dvb_create(struct pvr2_context *pvr) ...@@ -405,7 +405,7 @@ struct pvr2_dvb_adapter *pvr2_dvb_create(struct pvr2_context *pvr)
if (!pvr->hdw->hdw_desc->dvb_props) { if (!pvr->hdw->hdw_desc->dvb_props) {
/* Device lacks a digital interface so don't set up /* Device lacks a digital interface so don't set up
the DVB side of the driver either. For now. */ the DVB side of the driver either. For now. */
return 0; return NULL;
} }
adap = kzalloc(sizeof(*adap), GFP_KERNEL); adap = kzalloc(sizeof(*adap), GFP_KERNEL);
if (!adap) return adap; if (!adap) return adap;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment