diff options
author | Michael Krufky | 2008-06-16 00:11:37 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab | 2008-07-20 12:22:03 +0200 |
commit | e080842c6c31249010adb184f9efbbc5cb40bd2b (patch) | |
tree | c28916fdb6d06c3a4f51e721af0f5eee4625278c /drivers/media/dvb/siano | |
parent | V4L/DVB (8286): sms1xxx: remove typedefs (diff) | |
download | kernel-qcow2-linux-e080842c6c31249010adb184f9efbbc5cb40bd2b.tar.gz kernel-qcow2-linux-e080842c6c31249010adb184f9efbbc5cb40bd2b.tar.xz kernel-qcow2-linux-e080842c6c31249010adb184f9efbbc5cb40bd2b.zip |
V4L/DVB (8287): sms1xxx: fix WARNING: unnecessary cast may hide bugs
fix the following checkpatch.pl warning:
WARNING: unnecessary cast may hide bugs,
see http://c-faq.com/malloc/mallocnocast.html
596: FILE: linux/drivers/media/dvb/siano/smscoreapi.c:540:
+ msg = (struct SmsMsgHdr_ST *) kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA);
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/siano')
-rw-r--r-- | drivers/media/dvb/siano/smscoreapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/siano/smscoreapi.c b/drivers/media/dvb/siano/smscoreapi.c index e3c6d9cb5621..423ca5744952 100644 --- a/drivers/media/dvb/siano/smscoreapi.c +++ b/drivers/media/dvb/siano/smscoreapi.c @@ -489,7 +489,7 @@ int smscore_load_firmware_family2(struct smscore_device_t *coredev, } /* PAGE_SIZE buffer shall be enough and dma aligned */ - msg = (struct SmsMsgHdr_ST *) kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA); + msg = kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA); if (!msg) return -ENOMEM; |