From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Geert Uytterhoeven Subject: [PATCH v2 2/2] gpio: pca953x: Add support for CAT9554 Date: Thu, 21 Mar 2019 10:21:45 +0100 Message-Id: <20190321092145.14896-3-geert+renesas@glider.be> In-Reply-To: <20190321092145.14896-1-geert+renesas@glider.be> References: <20190321092145.14896-1-geert+renesas@glider.be> To: Linus Walleij , Bartosz Golaszewski Cc: Rob Herring , Mark Rutland , Chris Brandt , linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven List-ID: The ON Semiconductor CAT9554 is a variant of the PCA953x GPIO expander, with 8 GPIOs and interrupt functionality. Signed-off-by: Geert Uytterhoeven --- v2: - Split DT binding doc and driver update in separate patches. --- drivers/gpio/gpio-pca953x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index 7e76830b33682aa3..88c94d155e218535 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -1167,6 +1167,7 @@ static const struct of_device_id pca953x_dt_ids[] = { { .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), }, { .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), }, + { .compatible = "onnn,cat9554", .data = OF_953X( 8, PCA_INT), }, { .compatible = "onnn,pca9654", .data = OF_953X( 8, PCA_INT), }, { .compatible = "exar,xra1202", .data = OF_953X( 8, 0), }, -- 2.17.1