Commit 917cbcde authored by Shuah Khan's avatar Shuah Khan Committed by Mauro Carvalho Chehab

[media] au0828: add au0828_rc_*() stubs for VIDEO_AU0828_RC disabled case

Define au0828_rc_*() stubs to avoid compile errors when
VIDEO_AU0828_RC is disabled and avoid the need to enclose
au0828_rc_*() in ifdef CONFIG_VIDEO_AU0828_RC in .c files.
Signed-off-by: default avatarShuah Khan <shuah.kh@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 345e3bfd
...@@ -326,7 +326,14 @@ extern struct videobuf_queue_ops au0828_vbi_qops; ...@@ -326,7 +326,14 @@ extern struct videobuf_queue_ops au0828_vbi_qops;
} while (0) } while (0)
/* au0828-input.c */ /* au0828-input.c */
int au0828_rc_register(struct au0828_dev *dev); #ifdef CONFIG_VIDEO_AU0828_RC
void au0828_rc_unregister(struct au0828_dev *dev); extern int au0828_rc_register(struct au0828_dev *dev);
int au0828_rc_suspend(struct au0828_dev *dev); extern void au0828_rc_unregister(struct au0828_dev *dev);
int au0828_rc_resume(struct au0828_dev *dev); extern int au0828_rc_suspend(struct au0828_dev *dev);
extern int au0828_rc_resume(struct au0828_dev *dev);
#else
static inline int au0828_rc_register(struct au0828_dev *dev) { return 0; }
static inline void au0828_rc_unregister(struct au0828_dev *dev) { }
static inline int au0828_rc_suspend(struct au0828_dev *dev) { return 0; }
static inline int au0828_rc_resume(struct au0828_dev *dev) { return 0; }
#endif
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