This patch removes type "static" from those functions declaration.
Change-Id: I2244ca3568b73251401e5102f26cc113ea69c1a4
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
#include <linux/sizes.h>
#include <asm/arch/cpu.h>
#include <asm/gpio.h>
-#include <linux/input.h>
#include <dm.h>
/*
* Use #ifdef to work around conflicting headers while we wait for this to be
#endif
}
-static int key_pressed(int key)
+int key_pressed(int key)
{
int value;
}
#ifdef CONFIG_LCD
-static int check_keys(void)
+int check_keys(void)
{
int keys = 0;
#ifndef __SAMSUNG_MISC_COMMON_H__
#define __SAMSUNG_MISC_COMMON_H__
+#include <linux/input.h>
+
#ifdef CONFIG_REVISION_TAG
u32 get_board_rev(void);
#endif
};
void keys_init(void);
+int check_keys(void);
+int key_pressed(int key);
void check_boot_mode(void);
#endif /* CONFIG_LCD_MENU */