forked from armbian/build
-
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.
rockchip64-6.11: rewrite kernel patches
- Loading branch information
1 parent
bede7c1
commit b2e28db
Showing
2 changed files
with
18 additions
and
21 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,22 +1,21 @@ | ||
From b305f05351984645293a9b7b2047779f6d8fbdd2 Mon Sep 17 00:00:00 2001 | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Paolo Sabatino <[email protected]> | ||
Date: Sat, 5 Oct 2024 16:07:14 +0200 | ||
Subject: [PATCH] Add tm16xx led auxiliary display driver | ||
Subject: Add tm16xx led auxiliary display driver | ||
|
||
--- | ||
drivers/auxdisplay/Kconfig | 10 + | ||
drivers/auxdisplay/Makefile | 1 + | ||
drivers/auxdisplay/tm16xx.c | 1167 +++++++++++++++++++++++++++++++++++ | ||
drivers/auxdisplay/tm16xx.c | 1167 ++++++++++ | ||
3 files changed, 1178 insertions(+) | ||
create mode 100644 drivers/auxdisplay/tm16xx.c | ||
|
||
diff --git a/drivers/auxdisplay/Kconfig b/drivers/auxdisplay/Kconfig | ||
index 64012cda4d12..3fe0088b7f1f 100644 | ||
index 111111111111..222222222222 100644 | ||
--- a/drivers/auxdisplay/Kconfig | ||
+++ b/drivers/auxdisplay/Kconfig | ||
@@ -183,6 +183,16 @@ config HT16K33 | ||
Say yes here to add support for Holtek HT16K33, RAM mapping 16*8 | ||
LED controller driver with keyscan. | ||
@@ -49,6 +49,16 @@ config HD44780 | ||
kernel and started at boot. | ||
If you don't understand what all this is about, say N. | ||
|
||
+config TM16XX | ||
+ tristate "TM16xx/FD6xx LED controller driver and compatibles" | ||
|
@@ -32,7 +31,7 @@ index 64012cda4d12..3fe0088b7f1f 100644 | |
tristate "lcd2s 20x4 character display over I2C console" | ||
depends on I2C | ||
diff --git a/drivers/auxdisplay/Makefile b/drivers/auxdisplay/Makefile | ||
index f5c13ed1cd4f..066f452b1e26 100644 | ||
index 111111111111..222222222222 100644 | ||
--- a/drivers/auxdisplay/Makefile | ||
+++ b/drivers/auxdisplay/Makefile | ||
@@ -9,6 +9,7 @@ obj-$(CONFIG_CHARLCD) += charlcd.o | ||
|
@@ -45,7 +44,7 @@ index f5c13ed1cd4f..066f452b1e26 100644 | |
obj-$(CONFIG_LCD2S) += lcd2s.o | ||
diff --git a/drivers/auxdisplay/tm16xx.c b/drivers/auxdisplay/tm16xx.c | ||
new file mode 100644 | ||
index 000000000000..d938b0166e74 | ||
index 000000000000..111111111111 | ||
--- /dev/null | ||
+++ b/drivers/auxdisplay/tm16xx.c | ||
@@ -0,0 +1,1167 @@ | ||
|
@@ -1217,6 +1216,5 @@ index 000000000000..d938b0166e74 | |
+MODULE_ALIAS("spi:tm16xx"); | ||
+MODULE_ALIAS("i2c:tm16xx"); | ||
-- | ||
2.34.1 | ||
|
||
Armbian | ||
|
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