diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2009-06-15 09:43:31 -0400 |
---|---|---|
committer | Samuel Ortiz <sameol@linux.intel.com> | 2009-06-17 13:41:52 -0400 |
commit | 4d3792e054f706f73837769a0e5607b3b7ad25a2 (patch) | |
tree | 42545bf01207d599ed531d2025156fe6114997c1 /include | |
parent | 09f05ce8512c9873bda7f76273708753fdc5c698 (diff) |
mfd: fix tmio related warnings
We can not have .driver_data as const since platform_set_drvdata() doesnt take
a const.
The hclk mmc_data field can be const though.
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/tmio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index c377118884e6..6b9c5d06690c 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
@@ -22,7 +22,7 @@ | |||
22 | * data for the MMC controller | 22 | * data for the MMC controller |
23 | */ | 23 | */ |
24 | struct tmio_mmc_data { | 24 | struct tmio_mmc_data { |
25 | unsigned int hclk; | 25 | const unsigned int hclk; |
26 | }; | 26 | }; |
27 | 27 | ||
28 | /* | 28 | /* |