lkml.org 
[lkml]   [2023]   [Jul]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v4 2/2] gpio: ds4520: Add ADI DS4520 GPIO Expander Support
From
On 27/07/2023 10:52, Okan Sahin wrote:
> The DS4520 is a 9-bit nonvolatile (NV) I/O expander.
> It offers users a digitally programmable alternative
> to hardware jumpers and mechanical switches that are
> being used to control digital logic node.
>
> Signed-off-by: Okan Sahin <okan.sahin@analog.com>

...

> +static int ds4520_gpio_probe(struct i2c_client *client)
> +{
> + struct gpio_regmap_config config = { };
> + struct device *dev = &client->dev;
> + struct regmap *regmap;
> + u32 ngpio;
> + u32 base;
> + int ret;
> +
> + ret = device_property_read_u32(dev, "reg", &base);
> + if (ret) {
> + dev_err_probe(dev, ret,
> + "Missing 'reg' property.\n");
> + return -EINVAL;

Nope.

> + }
> +
> + ret = device_property_read_u32(dev, "ngpios", &ngpio);
> + if (ret) {
> + dev_err_probe(dev, ret,
> + "Missing 'ngpios' property.\n");
> + return -EINVAL;

Nope.

> + }
> +
> + regmap = devm_regmap_init_i2c(client, &ds4520_regmap_config);
> + if (IS_ERR(regmap)) {
> + ret = PTR_ERR(regmap);
> + dev_err_probe(dev, ret,
> + "Failed to allocate register map\n");
> + return ret;

That's not correct syntax. What did you receive in previous
comments/feedback?

Best regards,
Krzysztof

\
 
 \ /
  Last update: 2023-07-27 11:15    [W:0.033 / U:0.520 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site