Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.30 All patches automatically rebased. Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com> Link: https://github.com/openwrt/openwrt/pull/18877 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
20 lines
864 B
Diff
20 lines
864 B
Diff
From 7bc2fdd6fe5f9df317050ba02733c59962488e17 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Mon, 6 Mar 2023 21:04:05 +0000
|
|
Subject: [PATCH] gpio: pca953x: Add ti,tca9554 compatible string
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
drivers/gpio/gpio-pca953x.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/gpio/gpio-pca953x.c
|
|
+++ b/drivers/gpio/gpio-pca953x.c
|
|
@@ -1306,6 +1306,7 @@ static const struct of_device_id pca953x
|
|
{ .compatible = "ti,tca9535", .data = OF_953X(16, PCA_INT), },
|
|
{ .compatible = "ti,tca9538", .data = OF_953X( 8, PCA_INT), },
|
|
{ .compatible = "ti,tca9539", .data = OF_953X(16, PCA_INT), },
|
|
+ { .compatible = "ti,tca9554", .data = OF_953X( 8, PCA_INT), },
|
|
|
|
{ .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), },
|
|
{ .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), },
|