Commit d431b2e33cd54e4334019a95979ae93aea4735e8

Authored by Randy Dunlap
Committed by Jiri Kosina
1 parent cb3e85fe19

HID: hid-example: fix some build issues

samples/hid-example.o needs some Kconfig and Makefile additions in order
to build.  It should use <linux/*.h> headers from the build tree, so use
HEADERS_CHECK to require that those header files be present.

Change the kconfig symbol from tristate to bool since userspace cannot be
built as loadable modules.

However, I don't understand why the userspace header files are not present
as reported in Andrew's build log, since it builds OK on x86_64 without
any of these changes.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Alan Ott <alan@signal11.us>
Cc: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

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

... ... @@ -62,8 +62,8 @@
62 62 command to the kdb shell.
63 63  
64 64 config SAMPLE_HIDRAW
65   - tristate "Build simple hidraw example"
66   - depends on HIDRAW
  65 + bool "Build simple hidraw example"
  66 + depends on HIDRAW && HEADERS_CHECK
67 67 help
68 68 Build an example of how to use hidraw from userspace.
69 69  
samples/hidraw/Makefile
... ... @@ -6,4 +6,6 @@
6 6  
7 7 # Tell kbuild to always build the programs
8 8 always := $(hostprogs-y)
  9 +
  10 +HOSTCFLAGS_hid-example.o += -I$(objtree)/usr/include