Re: [PATCH v6 00/11] Raspberry Pi PoE HAT fan support

2021-01-12 Thread Linus Walleij
of those cases where I would suggest collect ACKs from affected subsystem maintainers and send a pull request to the SoC tree for this hairy bundle. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverpr

Re: [PATCH] staging: mt7621-dts: match pinctrl nodes with its binding documentation

2021-01-05 Thread Linus Walleij
. > > Signed-off-by: Sergio Paracuellos Acked-by: Linus Walleij Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 0/8] pinctrl: ralink: rt2880: Some minimal clean ups

2021-01-04 Thread Linus Walleij
merge window. Applied patches 1-7 to the pinctrl tree, patch 8 needs to be sent to Greg. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 0/8] pinctrl: ralink: rt2880: Some minimal clean ups

2020-12-14 Thread Linus Walleij
merge window. Reviewed-by: Linus Walleij If Greg wants he can queue them last minute. Else I'll apply these after the merge window, no big deal. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject

Re: [PATCH v2 2/2] pinctrl: ralink: add a pinctrl driver for the rt2880 family

2020-12-08 Thread Linus Walleij
I will eventually apply directly anyway). Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 2/3] pinctrl: ralink: add a pinctrl driver for the rt2880 family

2020-12-07 Thread Linus Walleij
Hi Serigio, I dug around some to try to understand the patch I think I get it now :) Squash this with the third patch so it becomes a "move" of this file, preserving history. With that: Acked-by: Linus Walleij I have ideas, but it is better to move the driver out of staging a

Re: [PATCH 1/3] dt-bindings: pinctrl: rt2880: add binding document

2020-12-07 Thread Linus Walleij
ion... enum: [gpio, i2c, spi, uart1, uart2, uart3, rgmii1, rgmii2, mdio, nand1, nand2, sdhci] Note: the function names are fine but the group names are a bit confusion since often a group can be used for more than one function, and e.g. function = "i2c"; group = "uart1

Re: [PATCH] staging: mt7621-pinctrl: stop using the deprecated 'pinctrl_add_gpio_range'

2020-12-07 Thread Linus Walleij
o my subsystem before the merge window if there is time. I'll provide ACK. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH] staging: mt7621-pinctrl: stop using the deprecated 'pinctrl_add_gpio_range'

2020-12-07 Thread Linus Walleij
On Mon, Dec 7, 2020 at 2:57 PM Sergio Paracuellos wrote: > On Mon, Dec 7, 2020 at 2:05 PM Linus Walleij wrote: > > After this I think the driver looks good and can graduate from staging. > > Can you send a patch to move this to drivers/pinctrl next > > > > I think dri

Re: [PATCH] staging: mt7621-pinctrl: stop using the deprecated 'pinctrl_add_gpio_range'

2020-12-07 Thread Linus Walleij
een > gpio node and pinctrl node and we can stop using the deprecated > pinctrl_add_gpio_range() function. > > Signed-off-by: Sergio Paracuellos Reviewed-by: Linus Walleij After this I think the driver looks good and can graduate from staging. Can you send a patch to move this to dri

[PATCH v2] staging: media: atomisp: Convert to GPIO descriptors

2020-08-27 Thread Linus Walleij
-by: Linus Walleij --- ChangeLog v1->v2: - Rebased on v5.9-rc1 --- .../media/atomisp/i2c/atomisp-lm3554.c| 68 --- .../media/atomisp/include/media/lm3554.h | 7 +- 2 files changed, 32 insertions(+), 43 deletions(-) diff --git a/drivers/staging/media/atomisp/i2c/atom

[PATCH] staging: greybus: gpio: Use irqchip template

2020-07-22 Thread Linus Walleij
This makes the driver use the irqchip template to assign properties to the gpio_irq_chip instead of using the explicit calls to gpiochip_irqchip_add(). The irqchip is instead added while adding the gpiochip. Cc: Nishad Kamdar Cc: Johan Hovold Signed-off-by: Linus Walleij --- drivers/staging

[PATCH v5] staging: wfx: Get descriptors for GPIOs

2020-07-03 Thread Linus Walleij
e Pouiller Signed-off-by: Linus Walleij --- ChangeLog v4->v5: - Make the wakeup GPIO optional. ChangeLog v3->v4: - Finally figured out how to compile this by selecting SPI host and deselecting MMC host. - Initialize the reset GPIO as OUT_LOW - Initialize the wakeup GPIO as OUT_LOW - Drop one

[PATCH v4] staging: wfx: Get descriptors for GPIOs

2020-06-30 Thread Linus Walleij
e Pouiller Signed-off-by: Linus Walleij --- ChangeLog v3->v4: - Finally figured out how to compile this by selecting SPI host and deselecting MMC host. - Initialize the reset GPIO as OUT_LOW - Initialize the wakeup GPIO as OUT_LOW - Drop one more desc_to_gpio() - Update the warning if GPIO is no

Re: [PATCH v3] staging: wfx: Get descriptors for GPIOs

2020-06-29 Thread Linus Walleij
On Sun, Jun 28, 2020 at 12:43 PM Greg KH wrote: > On Sun, Jun 28, 2020 at 10:52:36AM +0200, Linus Walleij wrote: > > ChangeLog v2->v3: > > - ERR_CAST not PTR_CAST > > ChangeLog v1->v2: > > - Fixed a cast and a variable name. > > - I still don't know

[PATCH v3] staging: wfx: Get descriptors for GPIOs

2020-06-28 Thread Linus Walleij
e Pouiller Signed-off-by: Linus Walleij --- ChangeLog v2->v3: - ERR_CAST not PTR_CAST ChangeLog v1->v2: - Fixed a cast and a variable name. - I still don't know how to compile this but hey the zeroday robot does. --- drivers/staging/wfx/bus_spi.c | 11 + driver

[PATCH v2] staging: wfx: Get descriptors for GPIOs

2020-06-27 Thread Linus Walleij
e Pouiller Signed-off-by: Linus Walleij --- ChangeLog v1->v2: - Fixed a cast and a variable name. - I still don't know how to compile this but hey the zeroday robot does. --- drivers/staging/wfx/bus_spi.c | 11 + drivers/staging/wfx/main.c| 42 --- d

[PATCH] staging: media: atomisp: Convert to GPIO descriptors

2020-06-27 Thread Linus Walleij
-by: Linus Walleij --- .../media/atomisp/i2c/atomisp-lm3554.c| 68 --- .../media/atomisp/include/media/lm3554.h | 7 +- 2 files changed, 32 insertions(+), 43 deletions(-) diff --git a/drivers/staging/media/atomisp/i2c/atomisp-lm3554.c b/drivers/staging/media/atomisp

[PATCH] staging: wfx: Get descriptors for GPIOs

2020-06-27 Thread Linus Walleij
e Pouiller Signed-off-by: Linus Walleij --- drivers/staging/wfx/bus_spi.c | 11 + drivers/staging/wfx/main.c| 42 --- drivers/staging/wfx/main.h| 2 -- 3 files changed, 9 insertions(+), 46 deletions(-) diff --git a/drivers/staging/wfx/bus_spi.c

Re: [PATCH v1 0/3] Tegra GPIO: Minor code clean up

2020-01-07 Thread Linus Walleij
On Tue, Jan 7, 2020 at 10:31 AM Bartosz Golaszewski wrote: > wt., 7 sty 2020 o 10:29 Linus Walleij napisał(a): > > > Ugh, I now noticed I responded to Thierry only after applying this to my > > > tree. > > > > > > Anyway, it shouldn't be a problem. I'

Re: [PATCH v1 0/3] Tegra GPIO: Minor code clean up

2020-01-07 Thread Linus Walleij
On Tue, Jan 7, 2020 at 9:25 AM Bartosz Golaszewski wrote: > pon., 6 sty 2020 o 23:59 Linus Walleij napisał(a): > > On Sun, Dec 15, 2019 at 7:31 PM Dmitry Osipenko wrote: > > > > > I was investigating why CPU hangs during of GPIO driver suspend and in >

Re: [PATCH v1 0/3] Tegra GPIO: Minor code clean up

2020-01-06 Thread Linus Walleij
_relaxed accessors > gpio: tegra: Properly handle irq_set_irq_wake() error > gpio: tegra: Use NOIRQ phase for suspend/resume All three patches applied with Thierry's review/test tag. Yours, Linus Walleij ___ devel mailing list

[PATCH] staging: fbtft: Do not hardcode SPI CS polarity inversion

2019-12-04 Thread Linus Walleij
clarifying why ^= SPI_CS_HIGH is the right choice here. Reported-by: Mark Brown Signed-off-by: Linus Walleij --- drivers/staging/fbtft/fb_uc1611.c| 12 +--- drivers/staging/fbtft/fb_watterott.c | 13 ++--- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/drivers

Re: [PATCH] gpiolib: Fix incorrect use of find_next_zero_bit()

2018-10-01 Thread Linus Walleij
zysztofik Patch applied with Marek's Tested-by. Thanks to both of you for digging in and fixing this up! Now we are in good shape for the v4.20 cycle :) Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 2/2] gpiolib: Fix array members of same chip processed separately

2018-09-24 Thread Linus Walleij
ed up processing of applications > using whole GPIO banks as I/O ports, while not breaking simultaneous > manipulation of consecutive pins of the same chip which don't follow > the equal numbering rule. > > Cc: Jonathan Corbet > Signed-off-by: Janusz Krzysztofik Patch applied!

Re: [PATCH 1/2] gpiolib: Fix missing updates of bitmap index

2018-09-24 Thread Linus Walleij
already processed via fast bitmap path, possibly resulting in an > infinite loop. Fix it. > > Signed-off-by: Janusz Krzysztofik Patch applied! Thanks for working on getting this into shape! Yours, Linus Walleij ___ devel mailing list de

Re: [PATCH v7 4/4] gpiolib: Implement fast processing path in get/set array

2018-09-20 Thread Linus Walleij
r testing on this platform! > Booting hangs after detecting MMC cards. Reverting this patch fixes the > boot. I will try later to add some debugs and investigate it further what > really happens when booting hangs. How typical. I hope we can fix it, because this should mean speedups for your platf

Re: [PATCH v8 0/4] gpiolib: speed up GPIO array processing

2018-09-19 Thread Linus Walleij
On Thu, Sep 13, 2018 at 2:22 AM Linus Walleij wrote: > On Wed, Sep 5, 2018 at 11:49 PM Janusz Krzysztofik > wrote: > > > The goal is to boost performance of get/set array functions while > > processing GPIO arrays which represent pins of a signle chip in > > ha

Re: [PATCH v8 0/4] gpiolib: speed up GPIO array processing

2018-09-13 Thread Linus Walleij
ally excited to merge this! Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH v5 1/4] gpiolib: Pass bitmaps, not integer arrays, to get/set array

2018-08-31 Thread Linus Walleij
should move forward with my plan to send a sed script to Torvalds just renaming all of those to something sane in the next merge window. Like __assign_bit() -> assign_bit_nonatomic() Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject

Re: [RFC RFT PATCH 0/4] gpiolib: speed up GPIO array processing

2018-08-29 Thread Linus Walleij
lon > who suggested using GPIO API modified to accept bitmaps, and by Linus > Walleij who suggested still more great ideas for further immprovement > of the proposed API changes - thanks! > > The goal is to boost performans of get/set array functions while > processing GPIO arrays

Re: [PATCH 4/4] staging: wilc1000: use descriptor-based interface for GPIO

2018-07-20 Thread Linus Walleij
odule remove > as the reference was fetched in probe function. > Updated the TODO file > > Signed-off-by: Ajay Singh Reviewed-by: Linus Walleij Thanks Ajay! Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverde

Re: [PATCH v4 1/2] gpio: mediatek: add driver for MT7621

2018-07-09 Thread Linus Walleij
n "wide". I changed it while applying the patch. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH v4 2/2] dt-bindings: document gpio-mt7621 bindings

2018-07-09 Thread Linus Walleij
On Thu, Jul 5, 2018 at 3:43 PM Sergio Paracuellos wrote: > Add a devicetree binding documentation for the mt7621 gpio. > > Signed-off-by: Sergio Paracuellos > Reviewed-by: NeilBrown Patch applied with Rob's review tag. Yours, L

Re: [PATCH 2/2] dt-bindings: document gpio-mt7621 bindings

2018-06-14 Thread Linus Walleij
On Thu, Jun 14, 2018 at 4:33 PM, Rob Herring wrote: > On Thu, Jun 14, 2018 at 8:14 AM, Linus Walleij > wrote: >> On Wed, Jun 13, 2018 at 9:28 PM, Rob Herring wrote: >> >>>> "Some system-on-chips (SoCs) use the concept of GPIO banks. ... >>>> Usual

Re: [PATCH 2/2] dt-bindings: document gpio-mt7621 bindings

2018-06-14 Thread Linus Walleij
a, it is mediatek,mt7321-gpio, so it has 3x32 GPIOs indexed from 0..95". No need of overspecifying stuff. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 2/2] dt-bindings: document gpio-mt7621 bindings

2018-06-14 Thread Linus Walleij
that case to concatenate the offsets and instead of having an extra cell 0, 1 and offsets 0-31, 0-31 have two cells and offsets 0-63. My reasoning is that since it is represented by a single device we are indexing into that one device from 0-n. Yours, Linus Walleij ___

Re: [PATCH 1/2] gpio: mediatek: add driver for MT7621

2018-06-08 Thread Linus Walleij
A second thought: On Fri, Jun 8, 2018 at 1:59 PM, Linus Walleij wrote: >> + select GPIOLIB_IRQCHIP > > You are not using this so I guess remove that line. (...) >> +static int >> +mediatek_gpio_to_irq(struct gpio_chip *chip, unsigned int pin) >> +{ >>

Re: [PATCH 1/2] gpio: mediatek: add driver for MT7621

2018-06-08 Thread Linus Walleij
= mediatek_gpio_irq_unmask, > + .irq_mask = mediatek_gpio_irq_mask, > + .irq_mask_ack = mediatek_gpio_irq_mask, > + .irq_set_type = mediatek_gpio_irq_type, > +}; When implementing custom irqchips it is important to also implement .irq_request_resources() and .irq_release_resources() and make sure these call gpiochip_[un]lock_as_irq(). See for example drivers/gpio/gpio-dwapb.c for an example. > +static const struct of_device_id mediatek_gpio_match[] = { > + { .compatible = "mediatek,mt7621-gpio" }, > + {}, > +}; > +MODULE_DEVICE_TABLE(of, mediatek_gpio_match); > + > +static struct platform_driver mediatek_gpio_driver = { > + .probe = mediatek_gpio_probe, > + .driver = { > + .name = "mt7621_gpio", > + .of_match_table = mediatek_gpio_match, > + }, > +}; > + > +module_platform_driver(mediatek_gpio_driver); If you're not implementing .remove() I don't think this will really work fine as a module. Also the Kconfig is a bool. I guess you want to use builtin_platform_driver()? Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 2/2] staging: nvec: convert to use GPIO descriptors

2018-04-23 Thread Linus Walleij
On Thu, Apr 19, 2018 at 1:01 PM, Marc Dietrich <marvi...@gmx.de> wrote: > Use GPIO descriptors instead of relying on the old method. > > Cc: Linus Walleij <linus.wall...@linaro.org> > Signed-off-by: Marc Dietrich <marvi...@gmx.de> > --- > This obsolets the ToD

[PATCH 3/9] staging: greybus: Add TODO file with GPIO work items

2018-04-19 Thread Linus Walleij
To make sure that these drivers do not leave staging before they are properly converted to use the new GPIO descriptor API, and the GPIOLIB_IRQCHIP helper library, create the TODO file with these work items. Cc: Johan Hovold <jo...@kernel.org> Signed-off-by: Linus Walleij <l

[PATCH 6/9] staging: gpio-mt7621: Include the right header

2018-04-19 Thread Linus Walleij
GPIO drivers should include only, the header is deprecated. Cc: John Crispin <j...@phrozen.org> Cc: Zhiyong Tao <zhiyong@mediatek.com> Cc: Sean Wang <sean.w...@mediatek.com> Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- I was philosophizing whether

[PATCH 8/9] staging: olpc_dcon: Augment TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that this driver does not leave staging before it is properly converted to use the new GPIO descriptor API, augment the TODO file with this work item. Cc: Andres Salomon <dilin...@queued.net> Cc: Jens Frederich <jfreder...@gmail.com> Signed-off-by: Linus Walleij

[PATCH 9/9] staging: wilc1000: Augment TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that this driver does not leave staging before it is properly converted to use the new GPIO descriptor API, augment the TODO file with this work item. Cc: Johnny Kim <johnny@microchip.com> Cc: Nicolas Ferre <nicolas.fe...@microchip.com> Signed-off-by: Linus Walleij

[PATCH 7/9] staging: nvec: Augment TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that this driver does not leave staging before it is properly converted to use the new GPIO descriptor API, augment the TODO file with this work item. Cc: Marc Dietrich <marvi...@gmx.de> Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- drivers/staging/n

[PATCH 2/9] staging: fbtft: Add TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that these drivers do not leave staging before they are properly converted to use the new GPIO descriptor API, create the TODO file with this work item. Cc: Thomas Petazzoni <thomas.petazz...@free-electrons.com> Cc: Noralf Tronnes <no...@tronnes.org> Signed-off-by: L

[PATCH 1/9] staging: emxx_udc: Add GPIO descriptor work to TODO

2018-04-19 Thread Linus Walleij
To make sure this driver does not leave staging without a proper conversion to the GPIO descriptor API, leave a note in the TODO. Cc: Magnus Damm <damm+rene...@opensource.se> Cc: Simon Horman <horms+rene...@verge.net.au> Cc: Geert Uytterhoeven <geert+rene...@glider.be> Si

[PATCH 0/9] staging: Anchor GPIO descriptors

2018-04-19 Thread Linus Walleij
Trying to be helpful for people who want to clean up the staging drivers: point out the drivers that need to be converted to use GPIO descriptors and a little bit on how to do it. Linus Walleij (9): staging: emxx_udc: Add GPIO descriptor work to TODO staging: fbtft: Add TODO file with GPIO

[PATCH 5/9] staging: atomisp: Augment TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that these drivers do not leave staging before they are properly converted to use the new GPIO descriptor API, augment the TODO file with this work item. Cc: Alan Cox <a...@linux.intel.com> Cc: Andy Shevchenko <andriy.shevche...@linux.intel.com> Signed-off-by: L

[PATCH 4/9] staging: iio: Augment TODO file with GPIO work item

2018-04-19 Thread Linus Walleij
To make sure that these drivers do not leave staging before they are properly converted to use the new GPIO descriptor API, augment the TODO file with this work item. Cc: Jonathan Cameron <jonathan.came...@huawei.com> Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- dri

Re: [OpenWrt-Devel] [PATCH v3 0/6] staging: Introduce DPAA2 Ethernet Switch driver

2017-10-14 Thread Linus Walleij
t take the old switchdev-based SMI-driver and convert it to DSA. I bet I can do that :D Well, I will try. Because it's blocking me to work on the Gemini ethernet driver. Yours, Linus Walleij ___ devel mailing list de...@lin

Re: [PATCH v3 0/6] staging: Introduce DPAA2 Ethernet Switch driver

2017-10-14 Thread Linus Walleij
Top posting and resending since net...@vger.kernel.org is the right mail address for this. Mea culpa. Linus Walleij On Sat, Oct 14, 2017 at 11:35 AM, Linus Walleij <linus.wall...@linaro.org> wrote: > On Thu, Oct 5, 2017 at 11:16 AM, Razvan Stefanescu > <razvan.stefane...

Re: [PATCH v3 0/6] staging: Introduce DPAA2 Ethernet Switch driver

2017-10-14 Thread Linus Walleij
ethernet switch subsystem so we can house these drivers in a proper way? What we need AFAICT: - Consensus on userspace ABI - Consensus on ethtool extenstions - Consensus on where in drivers/net this goes You can kick me for not knowing what I'm talking about and how complex the p

Re: [PATCH 10/20] gpio: pca953x: Add optional reset gpio control

2016-12-30 Thread Linus Walleij
On Thu, Dec 29, 2016 at 11:27 PM, Steve Longerbeam <slongerb...@gmail.com> wrote: > Add optional reset-gpios pin control. If present, de-assert the > specified reset gpio pin to bring the chip out of reset. > > Signed-off-by: Steve Longerbeam <steve_longerb...@mentor.com

Re: [PATCH 4/6] gpio: cbc-presence: Add CBC presence detect as GPIO driver

2016-10-21 Thread Linus Walleij
ONNECTOR is selected. > + > + This driver can also be built as a module. If so, the module > + will be called gpio-cbc-presence. At least tell us *what* it is detecting the presence of. Apart from this it has some of the same issues pointed out in the other drivers, correc

Re: [PATCH 3/6] gpio: gpio-cbc: Document bindings of CBC FPGA GPIO block

2016-10-21 Thread Linus Walleij
tion (0 = out, 1 = in) > + bit[1]: init high > + bit[2]: active low Can't you just refer to the generic bindings? Apart from that it looks fine. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Re: [PATCH 2/6] gpio: Add support for PTX1K CBC FPGA spare GPIOs

2016-10-21 Thread Linus Walleij
ng IRQ will be pretty quick and easy to fix up I guess, the IRQ drivers will require some effort. An approach is to split these in two: one for the basic GPIO and a separate add-on patch for the IRQ functionality. Yours, Linus Walleij _

[PATCH v2] RFC: staging: greybus: shape up greybus GPIO

2016-10-10 Thread Linus Walleij
Cc: Sandeep Patil <patil_sand...@projectara.com> Cc: Rui Miguel Silva <rui.si...@linaro.org> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- ChangeLog v1->v2: - Add the hunk adding select GPIOLIB_IRQCHIP to

[PATCH] RFC: staging: greybus: shape up greybus GPIO

2016-10-09 Thread Linus Walleij
Cc: Sandeep Patil <patil_sand...@projectara.com> Cc: Rui Miguel Silva <rui.si...@linaro.org> Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org> Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- Greybus folks: please look at this. I expect something like this to b

Re: [PATCH 172/182] staging: vme: use gpiochip data pointer

2015-12-14 Thread Linus Walleij
On Fri, Dec 11, 2015 at 7:58 AM, Martyn Welch <mar...@welchs.me.uk> wrote: > On 09/12/15 13:50, Linus Walleij wrote: >> >> This makes the driver use the data pointer added to the gpio_chip >> to store a pointer to the state container instead of relying on >> con

[PATCH 172/182] staging: vme: use gpiochip data pointer

2015-12-09 Thread Linus Walleij
ail.com> Cc: de...@driverdev.osuosl.org Signed-off-by: Linus Walleij <linus.wall...@linaro.org> --- Greg, please ACK this so I can take this through the GPIO tree. --- drivers/staging/vme/devices/vme_pio2_gpio.c | 17 ++--- 1 file changed, 6 insertions(+), 11 deletions(-) diff --g

Re: [PATCH] staging: ste_rmi4: avoid unused function warnings

2015-11-30 Thread Linus Walleij
#ifdef and instead mark > the functions as __maybe_unused, which is a nicer anyway, as it > provides build testing for all the code in all configurations > and is harder to get wrong. > > Signed-off-by: Arnd Bergmann <a...@arndb.de> Acked-by: Li

Re: Status of RMI4 drivers?

2014-07-08 Thread Linus Walleij
that once the touchscreen portions are in place. I'm just not quite familiar with the structure of the new RMI4 framework so I will need some time on it. Yours, Linus Walleij ___ devel mailing list de...@linuxdriverproject.org http