lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Wed, 23 Aug 2017 14:21:49 +0100
From:   Lee Jones <lee.jones@...aro.org>
To:     Abhisit Sangjan <s.abhisit@...il.com>
Cc:     Peter Meerwald-Stadler <pmeerw@...erw.net>,
        Jonathan Cameron <Jonathan.Cameron@...wei.com>,
        jmondi <jacopo@...ndi.org>,
        Linus Walleij <linus.walleij@...aro.org>,
        linux-kernel@...r.kernel.org, lars@...afoo.de,
        linux-iio@...r.kernel.org, linux-gpio@...r.kernel.org,
        devicetree@...r.kernel.org
Subject: Re: [PATCH] mfd: Add support for TI LMP92001

On Wed, 23 Aug 2017, Abhisit Sangjan wrote:
> > > From: Abhisit Sangjan <s.abhisit@...il.com>
> > >
> > > TI LMP92001 Analog System Monitor and Controller
 
[...]

> > > Signed-off-by: Abhisit Sangjan <s.abhisit@...il.com>
> > > ---
> > >  Documentation/ABI/testing/sysfs-bus-iio-lmp920001  |  92 ++++
> > >  .../devicetree/bindings/gpio/gpio-lmp92001.txt     |  22 +
> > >  .../bindings/iio/adc/ti-lmp92001-adc.txt           |  21 +
> > >  .../bindings/iio/dac/ti-lmp92001-dac.txt           |  35 ++
> > >  drivers/gpio/Kconfig                               |   7 +
> > >  drivers/gpio/Makefile                              |   1 +
> > >  drivers/gpio/gpio-lmp92001.c                       | 209 +++++++++
> > >  drivers/iio/adc/Kconfig                            |  10 +
> > >  drivers/iio/adc/Makefile                           |   1 +
> > >  drivers/iio/adc/lmp92001-adc.c                     | 500
> > +++++++++++++++++++++
> > >  drivers/iio/dac/Kconfig                            |   9 +
> > >  drivers/iio/dac/Makefile                           |   1 +
> > >  drivers/iio/dac/lmp92001-dac.c                     | 390
> > ++++++++++++++++
> > >  drivers/mfd/Kconfig                                |  12 +
> > >  drivers/mfd/Makefile                               |   4 +
> > >  drivers/mfd/lmp92001-core.c                        | 308 +++++++++++++
> > >  drivers/mfd/lmp92001-debug.c                       |  67 +++
> > >  drivers/mfd/lmp92001-i2c.c                         | 215 +++++++++
> > >  include/linux/mfd/lmp92001/core.h                  | 119 +++++
> > >  include/linux/mfd/lmp92001/debug.h                 |  28 ++
> > >  20 files changed, 2051 insertions(+)
> > >  create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-lmp920001
> > >  create mode 100644 Documentation/devicetree/
> > bindings/gpio/gpio-lmp92001.txt
> > >  create mode 100644 Documentation/devicetree/
> > bindings/iio/adc/ti-lmp92001-adc.txt
> > >  create mode 100644 Documentation/devicetree/
> > bindings/iio/dac/ti-lmp92001-dac.txt
> > >  create mode 100644 drivers/gpio/gpio-lmp92001.c
> > >  create mode 100644 drivers/iio/adc/lmp92001-adc.c
> > >  create mode 100644 drivers/iio/dac/lmp92001-dac.c
> > >  create mode 100644 drivers/mfd/lmp92001-core.c
> > >  create mode 100644 drivers/mfd/lmp92001-debug.c
> > >  create mode 100644 drivers/mfd/lmp92001-i2c.c
> > >  create mode 100644 include/linux/mfd/lmp92001/core.h
> > >  create mode 100644 include/linux/mfd/lmp92001/debug.h

[...]

> > > +struct lmp92001_gpio {
> > > +     struct lmp92001 *lmp92001;
> > > +     struct gpio_chip gpio_chip;
> > > +};
> > > +
> > > +static int lmp92001_gpio_get_direction(struct gpio_chip *chip,
> > unsigned offset)
> >
> > unsigned vs unsigned int
> >
> 
> I am follow the function prototype, it is unsigned.
> 
> struct gpio_chip {
> ...
> int (*get_direction)(struct gpio_chip *chip,
> unsigned offset);
> ...
> };

[...]

> > > +#ifdef CONFIG_DEBUG_FS
> > > +static void lmp92001_gpio_dbg_show(struct seq_file *s, struct gpio_chip
> > *chip)
> > > +{
> > > +     struct lmp92001_gpio *lmp92001_gpio = gpiochip_get_data(chip);
> > > +     struct lmp92001 *lmp92001 = lmp92001_gpio->lmp92001;
> > > +     int i, gpio;
> > > +     unsigned int cgpo;
> > > +     const char *label, *dir, *logic;
> > > +
> > > +     for (i = 0; i < chip->ngpio; i++) {
> > > +             gpio = i + chip->base;
> > > +
> > > +             label = gpiochip_is_requested(chip, i);
> > > +             if (!label)
> > > +                     continue;
> > > +
> > > +             regmap_read(lmp92001->regmap, LMP92001_CGPO, &cgpo);
> >
> > retval is not checked here (and elsewhere)
> >
> 
> This function is return void.

Please clip your responses!

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ