forked from jmpfbmx/kernel-4.4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added N1_defconfig and some stuff for N1
- Loading branch information
1 parent
cc6d534
commit 5e6ed67
Showing
38 changed files
with
28,000 additions
and
35 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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
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,20 @@ | ||
# | ||
# Touchscreen driver configuration | ||
# | ||
if TOUCHSCREEN_MTK_NT36xxx | ||
|
||
choice | ||
default TOUCHSCREEN_NT36xxx_1080_1920 | ||
prompt "Novatek NT36xxx Panels" | ||
|
||
config TOUCHSCREEN_NT36xxx_1080_1920 | ||
bool "NT36xxx_1080_1920" | ||
depends on I2C | ||
help | ||
Say Y here if you have a Novatek NT36xxx Panel | ||
to the host processor over I2C | ||
|
||
If unsure, say N. | ||
endchoice | ||
|
||
endif |
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,8 @@ | ||
# include $(srctree)/drivers/misc/mediatek/Makefile.custom | ||
|
||
# Linux driver folder | ||
ccflags-y += -I$(srctree)/drivers/input/touchscreen/mediatek/ | ||
ccflags-y += -I$(srctree)/drivers/misc/mediatek/include/mt-plat/ | ||
ccflags-y += -I$(srctree)/drivers/misc/mediatek/include/mt-plat/$(MTK_PLATFORM)/include/ | ||
#obj-$(CONFIG_TOUCHSCREEN_NT36xxx_1080_1920) += nt36xxx.o nt36xxx_ext_proc.o nt36xxx_fw_update.o nt36xxx_mp_ctrlram.o | ||
obj-y += nt36xxx.o nt36xxx_ext_proc.o nt36xxx_fw_update.o nt36xxx_mp_ctrlram.o gn_tpd_feature.o |
Oops, something went wrong.