mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
706afddaf5
Add missing includes to get rid of the following sparse warnings: arch/arm/mach-omap1/devices.c:225:13: warning: symbol 'omap1_camera_init' was not declared. Should it be static? arch/arm/mach-omap1/flash.c:15:6: warning: symbol 'omap1_set_vpp' was not declared. Should it be static? arch/arm/mach-omap1/serial.c:190:6: warning: symbol 'omap_serial_wake_trigger' was not declared. Should it be static? arch/arm/mach-omap1/time.c:252:18: warning: symbol 'omap_timer' was not declared. Should it be static? Signed-off-by: Aaro Koskinen <aaro.koskinen@nokia.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
35 lines
716 B
C
35 lines
716 B
C
/*
|
|
* Flash support for OMAP1
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/mtd/mtd.h>
|
|
#include <linux/mtd/map.h>
|
|
|
|
#include <plat/io.h>
|
|
#include <plat/tc.h>
|
|
#include <plat/flash.h>
|
|
|
|
void omap1_set_vpp(struct map_info *map, int enable)
|
|
{
|
|
static int count;
|
|
u32 l;
|
|
|
|
if (enable) {
|
|
if (count++ == 0) {
|
|
l = omap_readl(EMIFS_CONFIG);
|
|
l |= OMAP_EMIFS_CONFIG_WP;
|
|
omap_writel(l, EMIFS_CONFIG);
|
|
}
|
|
} else {
|
|
if (count && (--count == 0)) {
|
|
l = omap_readl(EMIFS_CONFIG);
|
|
l &= ~OMAP_EMIFS_CONFIG_WP;
|
|
omap_writel(l, EMIFS_CONFIG);
|
|
}
|
|
}
|
|
}
|