[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CACRpkdZgWM6OJzoKhE2O5FATgkDwrRvuCSQZ2=szObTrF_c7RQ@mail.gmail.com>
Date: Mon, 7 Aug 2017 11:15:18 +0200
From: Linus Walleij <linus.walleij@...aro.org>
To: s.abhisit@...il.com
Cc: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-gpio@...r.kernel.org" <linux-gpio@...r.kernel.org>
Subject: Re: [PATCH 4/5] gpio: Add support for LMP92001 GPIO
On Tue, Aug 1, 2017 at 11:15 AM, <s.abhisit@...il.com> wrote:
> From: Abhisit Sangjan <s.abhisit@...il.com>
That is a bit terse commit message for an entire new driver.
Elaborate some please.
> +#include <linux/gpio.h>
#include <linux/gpio/driver.h>
ONLY please.
> +#include <linux/platform_device.h>
> +#include <linux/seq_file.h>
> +#include <linux/mfd/core.h>
> +#include <linux/version.h>
Why? Supporting old kernels? We don't do that upstream.
Add this:
#include <linux/bitops.h>
(See below)
> +static inline struct lmp92001_gpio *to_lmp92001_gpio(struct gpio_chip *chip)
> +{
> + return container_of(chip, struct lmp92001_gpio, gpio_chip);
> +}
Do not use this. Use the new devm_gpiochip_add_data() and pass a state container
as you data pointer.
> +
> +static int lmp92001_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
> +{
> + struct lmp92001_gpio *lmp92001_gpio = to_lmp92001_gpio(chip);
Then use this:
struct lmp92001_gpio *lmp92001_gpio = gpiochip_get_data(chip);
> + return (val >> offset) & 1;
Do this:
return !!(val &BIT(offset));
> +static int lmp92001_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
> +{
> + struct lmp92001_gpio *lmp92001_gpio = to_lmp92001_gpio(chip);
> + struct lmp92001 *lmp92001 = lmp92001_gpio->lmp92001;
> +
> + return regmap_update_bits(lmp92001->regmap, LMP92001_CGPO, 1 << offset,
> + 1 << offset);
return regmap_update_bits(lmp92001->regmap, LMP92001_CGPO,
BIT(offset), BIT(offset));
But seriously: why do you need to mask the bit even?
return regmap_update_bits(lmp92001->regmap, LMP92001_CGPO, 0, BIT(offset));
should work shouldn't it?
Use the bitops BIT() and state container gpiochip_get_data() and resend
and I will look at more details.
Yours,
Linus Walleij
Powered by blists - more mailing lists