aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorRyosuke Saito <raitosyo@gmail.com>2012-03-15 06:19:03 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-03-26 20:00:55 -0400
commit30053b87d5b97aca28dd7a59982cbb161eaf01c6 (patch)
treebaada31cb3c60ae6c51ba3a7c331aeba56d55777 /drivers/mtd
parent2a5dbead29a7c081a47133eb428440147a6d8d5a (diff)
mtd: fix section mismatch for doc_probe_device
doc_probe_device() is only called from docg3_probe() which is in .init.text, so it must be in the same section to avoid a section mismatch warning. Signed-off-by: Ryosuke Saito <raitosyo@gmail.com> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/devices/docg3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/devices/docg3.c b/drivers/mtd/devices/docg3.c
index 349bbfa74d0d..f5930caa38e7 100644
--- a/drivers/mtd/devices/docg3.c
+++ b/drivers/mtd/devices/docg3.c
@@ -1847,8 +1847,8 @@ static void __init doc_set_driver_info(int chip_id, struct mtd_info *mtd)
1847 * if a memory allocation failed. If floor 0 is checked, a reset of the ASIC is 1847 * if a memory allocation failed. If floor 0 is checked, a reset of the ASIC is
1848 * launched. 1848 * launched.
1849 */ 1849 */
1850static struct mtd_info *doc_probe_device(void __iomem *base, int floor, 1850static struct mtd_info * __init
1851 struct device *dev) 1851doc_probe_device(void __iomem *base, int floor, struct device *dev)
1852{ 1852{
1853 int ret, bbt_nbpages; 1853 int ret, bbt_nbpages;
1854 u16 chip_id, chip_id_inv; 1854 u16 chip_id, chip_id_inv;