diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 16:23:04 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-10-27 21:55:06 +0200 |
commit | c246ffc28e1b616305edce4b07acd35f46c6407c (patch) | |
tree | 430d650c3782979c117ef61cb67a6e7bcfc3a254 | |
parent | [media] rc-core: add separate defines for protocol bitmaps and numbers (diff) | |
download | linux-c246ffc28e1b616305edce4b07acd35f46c6407c.tar.xz linux-c246ffc28e1b616305edce4b07acd35f46c6407c.zip |
[media] siano: get rid of warning: no previous prototype
drivers/media/common/siano/smscoreapi.c:1095:26: warning: no previous prototype for 'get_entry' [-Wmissing-prototypes]
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/common/siano/smscoreapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/siano/smscoreapi.c b/drivers/media/common/siano/smscoreapi.c index 9cc55546cc30..1842e64e6338 100644 --- a/drivers/media/common/siano/smscoreapi.c +++ b/drivers/media/common/siano/smscoreapi.c @@ -1092,7 +1092,7 @@ EXPORT_SYMBOL_GPL(smscore_onresponse); * @return pointer to descriptor on success, NULL on error. */ -struct smscore_buffer_t *get_entry(struct smscore_device_t *coredev) +static struct smscore_buffer_t *get_entry(struct smscore_device_t *coredev) { struct smscore_buffer_t *cb = NULL; unsigned long flags; |