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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 06 Oct 2015 21:56:20 +0200 From: Arnd Bergmann <arnd@...db.de> To: linux-arm-kernel@...ts.infradead.org Cc: Thierry Reding <thierry.reding@...il.com>, Antoine Tenart <antoine.tenart@...e-electrons.com>, zmxu@...vell.com, jszhang@...vell.com, linux-pwm@...r.kernel.org, linux-kernel@...r.kernel.org, sebastian.hesselbarth@...il.com Subject: [PATCH] pwm: berlin: fix build warning The newly added berlin pwm driver causes a build warning: drivers/pwm/pwm-berlin.c: In function 'berlin_pwm_config': drivers/pwm/pwm-berlin.c:61:32: warning: initialization makes pointer from integer without a cast [-Wint-conversion] struct berlin_pwm_chip *pwm = to_berlin_pwm_chip(chip); This changes the prototype of the to_berlin_pwm_chip() the way it was meant to be. Signed-off-by: Arnd Bergmann <arnd@...db.de> --- On Monday 05 October 2015 16:30:15 Thierry Reding wrote: > On Fri, Oct 02, 2015 at 04:59:47PM +0200, Antoine Tenart wrote: > > Add a PWM controller driver for the Marvell Berlin SoCs. This PWM > > controller has 4 channels. > > > > Signed-off-by: Antoine Tenart <antoine.tenart@...e-electrons.com> > > Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@...il.com> > > --- > > drivers/pwm/Kconfig | 9 ++ > > drivers/pwm/Makefile | 1 + > > drivers/pwm/pwm-berlin.c | 221 +++++++++++++++++++++++++++++++++++++++++++++++ > > 3 files changed, 231 insertions(+) > > create mode 100644 drivers/pwm/pwm-berlin.c > > Applied, with minor tweaks, thanks. Apparently the tweak has failed diff --git a/drivers/pwm/pwm-berlin.c b/drivers/pwm/pwm-berlin.c index a390de6a760f..97933d3b2cc4 100644 --- a/drivers/pwm/pwm-berlin.c +++ b/drivers/pwm/pwm-berlin.c @@ -33,7 +33,7 @@ struct berlin_pwm_chip { void __iomem *base; }; -static inline to_berlin_pwm_chip(struct pwm_chip *chip) +static inline struct berlin_pwm_chip *to_berlin_pwm_chip(struct pwm_chip *chip) { return container_of((chip), struct berlin_pwm_chip, chip); } -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists