From: Antti Palosaari Date: Sun, 9 Dec 2012 23:46:46 +0000 (-0300) Subject: [media] dvb_usb_v2: use dummy function defines instead stub functions X-Git-Tag: upstream/snapshot3+hdmi~4891^2~287 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef3824029d0f5887c065ea461157bdf8b2287bf8;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [media] dvb_usb_v2: use dummy function defines instead stub functions I think it is better (cheaper) to use dummy defines for functions that has no meaning when remote controller is disabled by Kconfig. Signed-off-by: Antti Palosaari Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c b/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c index 94f134c..1330c64 100644 --- a/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c +++ b/drivers/media/usb/dvb-usb-v2/dvb_usb_core.c @@ -204,15 +204,8 @@ static int dvb_usbv2_remote_exit(struct dvb_usb_device *d) return 0; } #else -static int dvb_usbv2_remote_init(struct dvb_usb_device *d) -{ - return 0; -} - -static int dvb_usbv2_remote_exit(struct dvb_usb_device *d) -{ - return 0; -} + #define dvb_usbv2_remote_init(args...) 0 + #define dvb_usbv2_remote_exit(args...) #endif static void dvb_usb_data_complete(struct usb_data_stream *stream, u8 *buf,