diff options
author | Jeroen Hofstee <jeroen@myspectrum.nl> | 2014-10-08 22:57:46 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-25 07:27:37 -0400 |
commit | 19d7bf3d868383bf504c1dd2b4618fbf2b3dc20e (patch) | |
tree | 614234ed7a890398eee4c2b3e4f777ff10a4cd52 /drivers/input | |
parent | 654f8d0f3d4c606b75b70bbf0b1303a6074f0788 (diff) | |
download | u-boot-imx-19d7bf3d868383bf504c1dd2b4618fbf2b3dc20e.zip u-boot-imx-19d7bf3d868383bf504c1dd2b4618fbf2b3dc20e.tar.gz u-boot-imx-19d7bf3d868383bf504c1dd2b4618fbf2b3dc20e.tar.bz2 |
tegra: make local functions static
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/tegra-kbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/tegra-kbc.c b/drivers/input/tegra-kbc.c index 7e36db0..0ef94f7 100644 --- a/drivers/input/tegra-kbc.c +++ b/drivers/input/tegra-kbc.c @@ -181,7 +181,7 @@ static void kbd_wait_for_fifo_init(struct keyb *config) * @param input Input configuration * @return 1, to indicate that we have something to look at */ -int tegra_kbc_check(struct input_config *input) +static int tegra_kbc_check(struct input_config *input) { kbd_wait_for_fifo_init(&config); check_for_keys(&config); |