mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
20 lines
872 B
Diff
20 lines
872 B
Diff
From ef4f763ed8224efcaa5a09a7b304f3ab3c1bd5cc Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Mon, 6 Mar 2023 21:04:05 +0000
|
|
Subject: [PATCH 309/697] 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
|
|
@@ -1318,6 +1318,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), },
|