Commit 0e70156de4c8465bfb8cb45cdc1bbc2fa474ce14

Authored by Tony Lindgren
1 parent 957988c7d5

ARM: OMAP2+: Make omap4-keypad.h local

This can be local to mach-omap2.

Signed-off-by: Tony Lindgren <tony@atomide.com>

Showing 4 changed files with 10 additions and 10 deletions Side-by-side Diff

arch/arm/mach-omap2/board-4430sdp.c
... ... @@ -36,7 +36,7 @@
36 36 #include "common.h"
37 37 #include <plat/usb.h>
38 38 #include <plat/mmc.h>
39   -#include <plat/omap4-keypad.h>
  39 +#include "omap4-keypad.h"
40 40 #include <video/omapdss.h>
41 41 #include <video/omap-panel-nokia-dsi.h>
42 42 #include <video/omap-panel-picodlp.h>
arch/arm/mach-omap2/devices.c
... ... @@ -27,7 +27,7 @@
27 27 #include <plat/dma.h>
28 28 #include <plat/omap_hwmod.h>
29 29 #include <plat/omap_device.h>
30   -#include <plat/omap4-keypad.h>
  30 +#include "omap4-keypad.h"
31 31  
32 32 #include "soc.h"
33 33 #include "common.h"
arch/arm/mach-omap2/omap4-keypad.h
  1 +#ifndef ARCH_ARM_PLAT_OMAP4_KEYPAD_H
  2 +#define ARCH_ARM_PLAT_OMAP4_KEYPAD_H
  3 +
  4 +struct omap_board_data;
  5 +
  6 +extern int omap4_keyboard_init(struct omap4_keypad_platform_data *,
  7 + struct omap_board_data *);
  8 +#endif
arch/arm/plat-omap/include/plat/omap4-keypad.h
1   -#ifndef ARCH_ARM_PLAT_OMAP4_KEYPAD_H
2   -#define ARCH_ARM_PLAT_OMAP4_KEYPAD_H
3   -
4   -struct omap_board_data;
5   -
6   -extern int omap4_keyboard_init(struct omap4_keypad_platform_data *,
7   - struct omap_board_data *);
8   -#endif