Message ID | 20220629170420.2712077-2-l.stach@pengutronix.de |
---|---|
State | Accepted |
Commit | d274f02eb98be8ec1d13bb9d16493eb1711a3d37 |
Headers | show |
Series | [v2,1/2] gpio: pca9570: Add DT bindings for NXP PCA9571 | expand |
On Wed, Jun 29, 2022 at 7:04 PM Lucas Stach <l.stach@pengutronix.de> wrote: > > The PCA9571 very similar to the PCA9570, it only differs in the > number of GPIOs. > > Signed-off-by: Lucas Stach <l.stach@pengutronix.de> > --- > drivers/gpio/gpio-pca9570.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/gpio/gpio-pca9570.c b/drivers/gpio/gpio-pca9570.c > index cb2b2f735c15..ab2a652964ec 100644 > --- a/drivers/gpio/gpio-pca9570.c > +++ b/drivers/gpio/gpio-pca9570.c > @@ -121,12 +121,14 @@ static int pca9570_probe(struct i2c_client *client) > > static const struct i2c_device_id pca9570_id_table[] = { > { "pca9570", 4 }, > + { "pca9571", 8 }, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(i2c, pca9570_id_table); > > static const struct of_device_id pca9570_of_match_table[] = { > { .compatible = "nxp,pca9570", .data = (void *)4 }, > + { .compatible = "nxp,pca9571", .data = (void *)8 }, > { /* sentinel */ } > }; > MODULE_DEVICE_TABLE(of, pca9570_of_match_table); > -- > 2.30.2 > Applied, thanks! Bart
diff --git a/drivers/gpio/gpio-pca9570.c b/drivers/gpio/gpio-pca9570.c index cb2b2f735c15..ab2a652964ec 100644 --- a/drivers/gpio/gpio-pca9570.c +++ b/drivers/gpio/gpio-pca9570.c @@ -121,12 +121,14 @@ static int pca9570_probe(struct i2c_client *client) static const struct i2c_device_id pca9570_id_table[] = { { "pca9570", 4 }, + { "pca9571", 8 }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(i2c, pca9570_id_table); static const struct of_device_id pca9570_of_match_table[] = { { .compatible = "nxp,pca9570", .data = (void *)4 }, + { .compatible = "nxp,pca9571", .data = (void *)8 }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, pca9570_of_match_table);
The PCA9571 very similar to the PCA9570, it only differs in the number of GPIOs. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> --- drivers/gpio/gpio-pca9570.c | 2 ++ 1 file changed, 2 insertions(+)