All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] Fix sparse errors in drivers/clk/
@ 2015-05-06  7:39 Stephen Boyd
  2015-05-06  7:39 ` [PATCH 01/19] clk: gpio-gate: Don't export __init functions Stephen Boyd
                   ` (18 more replies)
  0 siblings, 19 replies; 33+ messages in thread
From: Stephen Boyd @ 2015-05-06  7:39 UTC (permalink / raw)
  To: Mike Turquette, Stephen Boyd
  Cc: linux-kernel, linux-clk, Alexandre Belloni, Alex Elder,
	Barry Song, Chao Xie, Dinh Nguyen, Javier Martinez Canillas,
	Jonas Jensen, Jyri Sarha, Linus Walleij, Magnus Damm, Pawel Moll,
	Peter Ujfalusi, Sebastian Hesselbarth, Simon Horman,
	Sylwester Nawrocki, Takashi Yoshii, Tero Kristo, Tim Kryger,
	Zhangfei Gao

This patchset fixes most of the sparse errors in drivers/clk/ that
I could find. The rest of the errors are mostly to do with conditional
locking and a couple drivers that cast an iomem pointer to an int to
compare addresses.

Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Alex Elder <elder@linaro.org>
Cc: Barry Song <Baohua.Song@csr.com>
Cc: Chao Xie <chao.xie@marvell.com>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Cc: Jonas Jensen <jonas.jensen@gmail.com>
Cc: Jyri Sarha <jsarha@ti.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Magnus Damm <damm@opensource.se>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Peter Ujfalusi <peter.ujfalusi@ti.com>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Simon Horman <horms+renesas@verge.net.au>
Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
Cc: Takashi Yoshii <takasi-y@ops.dti.ne.jp>
Cc: Tero Kristo <t-kristo@ti.com>
Cc: Tim Kryger <tim.kryger@linaro.org>
Cc: Zhangfei Gao <zhangfei.gao@linaro.org>

Stephen Boyd (19):
  clk: gpio-gate: Don't export __init functions
  clk: Silence sparse warnings about __clk_{get,put}()
  clk: max-gen: Silence sparse warnings
  clk: bcm/kona: Silence sparse warnings
  clk: bcm/kona: Remove ccu_list
  clk: berlin: Silence sparse warning
  clk: hix5hd2: Silence sparse warnings
  clk: samsung: Silence sparse warnings
  clk: emev2: Silence sparse warnings
  clk: sirf: Silence sparse warnings
  clk: socfpga: Silence sparse warning
  clk: st: Silence sparse warnings
  clk: ti: Silence sparse warnings
  clk: versatile: Silence sparse warnings
  clk: socfpga: Silence sparse warning
  clk: mmp: Silence sparse warnings
  clk: xgene: Silence sparse warnings
  clk: moxart: Silence sparse warnings
  clk: u300: Silence sparse warnings

 drivers/clk/bcm/clk-kona-setup.c     |  4 ----
 drivers/clk/bcm/clk-kona.c           |  2 +-
 drivers/clk/bcm/clk-kona.h           |  2 --
 drivers/clk/berlin/berlin2-pll.c     |  9 +--------
 drivers/clk/clk-gpio-gate.c          |  3 +--
 drivers/clk/clk-max-gen.c            |  2 ++
 drivers/clk/clk-moxart.c             |  4 ++--
 drivers/clk/clk-u300.c               |  1 +
 drivers/clk/clk-xgene.c              | 22 ++++++++++++----------
 drivers/clk/clk.c                    |  1 +
 drivers/clk/hisilicon/clk-hix5hd2.c  |  5 +++--
 drivers/clk/mmp/clk-apbc.c           |  2 +-
 drivers/clk/mmp/clk-apmu.c           |  2 +-
 drivers/clk/samsung/clk-exynos5260.c | 26 +++++++++++++-------------
 drivers/clk/shmobile/clk-emev2.c     |  2 +-
 drivers/clk/sirf/clk-common.c        |  4 ++--
 drivers/clk/socfpga/clk-gate.c       |  2 +-
 drivers/clk/socfpga/clk-periph.c     |  2 +-
 drivers/clk/st/clk-flexgen.c         |  6 +++---
 drivers/clk/st/clkgen-fsyn.c         |  4 ++--
 drivers/clk/st/clkgen-mux.c          | 14 +++++++-------
 drivers/clk/st/clkgen-pll.c          | 10 +++++-----
 drivers/clk/ti/clk-dra7-atl.c        |  4 ++--
 drivers/clk/ti/clk.c                 |  4 ++--
 drivers/clk/ti/dpll.c                |  2 +-
 drivers/clk/ti/fapll.c               |  6 +++---
 drivers/clk/versatile/clk-sp810.c    |  4 ++--
 27 files changed, 71 insertions(+), 78 deletions(-)

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2015-05-12 10:38 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-06  7:39 [PATCH 00/19] Fix sparse errors in drivers/clk/ Stephen Boyd
2015-05-06  7:39 ` [PATCH 01/19] clk: gpio-gate: Don't export __init functions Stephen Boyd
2015-05-06  7:39 ` [PATCH 02/19] clk: Silence sparse warnings about __clk_{get,put}() Stephen Boyd
2015-05-06  7:39 ` [PATCH 03/19] clk: max-gen: Silence sparse warnings Stephen Boyd
2015-05-06  9:23   ` Javier Martinez Canillas
2015-05-06  7:39 ` [PATCH 04/19] clk: bcm/kona: " Stephen Boyd
2015-05-06 13:21   ` Alex Elder
2015-05-06  7:39 ` [PATCH 05/19] clk: bcm/kona: Remove ccu_list Stephen Boyd
2015-05-06 13:23   ` Alex Elder
2015-05-06  7:39 ` [PATCH 06/19] clk: berlin: Silence sparse warning Stephen Boyd
2015-05-06 22:28   ` Sebastian Hesselbarth
2015-05-06  7:39 ` [PATCH 07/19] clk: hix5hd2: Silence sparse warnings Stephen Boyd
2015-05-06  8:55   ` zhangfei
2015-05-06  7:39 ` [PATCH 08/19] clk: samsung: " Stephen Boyd
2015-05-06 10:53   ` Sylwester Nawrocki
2015-05-06  7:39 ` [PATCH 09/19] clk: emev2: " Stephen Boyd
2015-05-07  4:36   ` Simon Horman
2015-05-07  5:17     ` Stephen Boyd
2015-05-07  5:31       ` Simon Horman
2015-05-06  7:39 ` [PATCH 10/19] clk: sirf: " Stephen Boyd
2015-05-06  7:39 ` [PATCH 11/19] clk: socfpga: Silence sparse warning Stephen Boyd
2015-05-06  7:39 ` [PATCH 12/19] clk: st: Silence sparse warnings Stephen Boyd
2015-05-06  7:39 ` [PATCH 13/19] clk: ti: " Stephen Boyd
2015-05-06  8:15   ` Peter Ujfalusi
2015-05-07  8:16     ` Tero Kristo
2015-05-06  7:39 ` [PATCH 14/19] clk: versatile: " Stephen Boyd
2015-05-06 10:31   ` Pawel Moll
2015-05-06  7:39 ` [PATCH 15/19] clk: socfpga: Silence sparse warning Stephen Boyd
2015-05-06  7:39 ` [PATCH 16/19] clk: mmp: Silence sparse warnings Stephen Boyd
2015-05-06  7:39 ` [PATCH 17/19] clk: xgene: " Stephen Boyd
2015-05-06  7:39 ` [PATCH 18/19] clk: moxart: " Stephen Boyd
2015-05-06  7:39 ` [PATCH 19/19] clk: u300: " Stephen Boyd
2015-05-12 10:38   ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.