diff options
author | Emil Goode <emilgoode@gmail.com> | 2012-05-04 04:33:37 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-08-13 18:47:56 -0400 |
commit | d9bc8510c5fb55ce7092ebc928c0791e738ea5ae (patch) | |
tree | fdf1b7b5b3c6ca84b04260cff7bfdf8e11ceb14d /drivers/media/video/cx88/cx88.h | |
parent | 0d27bbfe81cb087748dc1511683bd3e7335a7da5 (diff) |
[media] cx88: Remove duplicate const
This patch fixes the following sparse warnings
by removing use of duplicate const.
drivers/media/video/cx88/cx88.h:152:40:
warning: duplicate const
drivers/media/video/cx88/cx88-core.c:256:33:
warning: duplicate const
drivers/media/video/cx88/cx88-alsa.c:769:41:
warning: duplicate const
As commented by Jonathan Nieder:
These double "const" were introduced in v2.6.37-rc1~64^2~464 (V4L/DVB:
drivers/media: Make static data tables and strings const, 2010-08-25).
The address of an array is already immutable by definition, so for
what it's worth, with or without a clarified commit message,
[mchehab@redhat.com: Tested with "gcc -s" (version 4.7.0):
the produced asm is indeed equal before and after this patch]
Signed-off-by: Emil Goode <emilgoode@gmail.com>
Acked-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88/cx88.h')
-rw-r--r-- | drivers/media/video/cx88/cx88.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 0cae0fd9e164..44ffc8b3d45f 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
@@ -141,7 +141,7 @@ struct sram_channel { | |||
141 | u32 cnt1_reg; | 141 | u32 cnt1_reg; |
142 | u32 cnt2_reg; | 142 | u32 cnt2_reg; |
143 | }; | 143 | }; |
144 | extern const struct sram_channel const cx88_sram_channels[]; | 144 | extern const struct sram_channel cx88_sram_channels[]; |
145 | 145 | ||
146 | /* ----------------------------------------------------------- */ | 146 | /* ----------------------------------------------------------- */ |
147 | /* card configuration */ | 147 | /* card configuration */ |