forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: move misc-devices/mei example code from Documentation
Move misc-devices/mei examples to samples/mei and remove it from Documentation Makefile. Delete misc-devices/Makefile. Create a new Makefile to build samples/mei. It can be built from top level directory or from mei directory: Run make -C samples/mei or cd samples/mei; make Acked-by: Jonathan Corbet <[email protected]> Acked-by: Greg Kroah-Hartman <[email protected]> Acked-by: Tomas Winkler <[email protected]> Signed-off-by: Shuah Khan <[email protected]>
- Loading branch information
Shuah Khan
committed
Sep 23, 2016
1 parent
6bee835
commit 986b891
Showing
8 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
subdir-y := accounting auxdisplay blackfin \ | ||
laptops misc-devices pcmcia timers watchdog | ||
laptops pcmcia timers watchdog |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6244,6 +6244,7 @@ F: include/linux/mei_cl_bus.h | |
F: drivers/misc/mei/* | ||
F: drivers/watchdog/mei_wdt.c | ||
F: Documentation/misc-devices/mei/* | ||
F: samples/mei/* | ||
|
||
INTEL MIC DRIVERS (mic) | ||
M: Sudeep Dutt <[email protected]> | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CC := $(CROSS_COMPILE)gcc | ||
CFLAGS := -I../../usr/include | ||
|
||
PROGS := mei-amt-version | ||
|
||
all: $(PROGS) | ||
|
||
clean: | ||
rm -fr $(PROGS) |
File renamed without changes.
File renamed without changes.