linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/12] New warnings and build errors in linux-next
@ 2012-09-28 21:36 Arnd Bergmann
  2012-09-28 21:36 ` [PATCH 01/12] mtd: atmel nand: build regression Arnd Bergmann
                   ` (11 more replies)
  0 siblings, 12 replies; 40+ messages in thread
From: Arnd Bergmann @ 2012-09-28 21:36 UTC (permalink / raw)
  To: linux-arm-kernel

Hi everyone,

I've run my own build tests on the arm-soc tree, and now on linux-next
in order to find regressions on build warnings. These are a bunch of
patches that I came up with to address problems that were newly
introduced since 3.6 and that are not in the domain of the
arm-soc tree.

I'd hope to find someone for each patch to apply or rewrite it
in a better way. Sorry for any duplicates. I've made the patches
last week but had not gotten around to get them ready for submission,
it it may be possible that they are already fixed in one tree or
another.

	Arnd

Arnd Bergmann (12):
  mtd: atmel nand: build regression
  ata: mark probe function as __devinit rather than __init
  mmc: dw_mmc: fix building exynos driver as a module
  video: exynos: warnings in exynos_dp_core.c
  ARM: ixp4xx: use __iomem for MMIO
  sched: warnings in kernel/sched/fair.c
  staging/iio/lis3l02dq: fix building without irq_to_gpio
  dtc: be more quiet with "make -s"
  tty/console: fix warnings in drivers/tty/serial/kgdboc.c
  gpio: pcf857x: select IRQ_DOMAIN
  pinctrl: samsung: use __devinit section for init code
  time/jiffies: bring back unconditional LATCH definition

 arch/arm/mach-ixp4xx/include/mach/qmgr.h   |   12 ++++++------
 arch/arm/mach-ixp4xx/ixp4xx_qmgr.c         |    4 ++--
 drivers/ata/sata_highbank.c                |    2 +-
 drivers/gpio/Kconfig                       |    1 +
 drivers/mmc/host/dw_mmc-exynos.c           |    4 ++--
 drivers/mmc/host/dw_mmc-pltfm.c            |    2 +-
 drivers/mmc/host/dw_mmc-pltfm.h            |    2 +-
 drivers/mmc/host/dw_mmc.c                  |    2 +-
 drivers/mtd/nand/atmel_nand.c              |    8 ++++----
 drivers/pinctrl/pinctrl-samsung.c          |   10 +++++-----
 drivers/staging/iio/accel/lis3l02dq.h      |    1 +
 drivers/staging/iio/accel/lis3l02dq_core.c |   10 ++++++----
 drivers/staging/iio/accel/lis3l02dq_ring.c |    2 +-
 drivers/video/exynos/exynos_dp_core.c      |    2 +-
 include/linux/console.h                    |   10 ++++++++--
 include/linux/jiffies.h                    |    5 +++--
 include/linux/mmc/dw_mmc.h                 |    2 +-
 kernel/sched/fair.c                        |    2 +-
 scripts/Makefile.lib                       |    2 +-
 scripts/dtc/dtc.c                          |    5 +++--
 20 files changed, 50 insertions(+), 38 deletions(-)

-- 
1.7.10

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

end of thread, other threads:[~2012-10-22 23:37 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-28 21:36 [PATCH 00/12] New warnings and build errors in linux-next Arnd Bergmann
2012-09-28 21:36 ` [PATCH 01/12] mtd: atmel nand: build regression Arnd Bergmann
2012-09-29 19:53   ` Jean-Christophe PLAGNIOL-VILLARD
2012-09-28 21:36 ` [PATCH 02/12] ata: mark probe function as __devinit rather than __init Arnd Bergmann
2012-09-28 21:38   ` Mark Langsdorf
2012-09-28 21:36 ` [PATCH 03/12] mmc: dw_mmc: fix building exynos driver as a module Arnd Bergmann
2012-10-01 11:05   ` Will Newton
2012-10-04 12:40     ` Seungwon Jeon
2012-09-28 21:36 ` [PATCH 04/12] video: exynos: warnings in exynos_dp_core.c Arnd Bergmann
2012-10-05  8:01   ` Jingoo Han
2012-10-05  8:16     ` Arnd Bergmann
2012-09-28 21:36 ` [PATCH 05/12] ARM: ixp4xx: use __iomem for MMIO Arnd Bergmann
2012-09-29 10:35   ` ARM SoC tree, Was: " Krzysztof Halasa
2012-09-29 14:58     ` Arnd Bergmann
2012-09-29 17:02       ` Krzysztof Halasa
2012-09-29 17:31         ` Olof Johansson
2012-09-29 17:44         ` Russell King - ARM Linux
2012-09-29 21:38           ` Krzysztof Halasa
2012-09-29 21:53             ` Russell King - ARM Linux
2012-09-30 17:01               ` Krzysztof Halasa
2012-09-28 21:36 ` [PATCH 06/12] sched: warnings in kernel/sched/fair.c Arnd Bergmann
2012-09-28 21:36 ` [PATCH 07/12] staging/iio/lis3l02dq: fix building without irq_to_gpio Arnd Bergmann
2012-09-29 10:02   ` Jonathan Cameron
2012-09-29 15:03     ` Arnd Bergmann
2012-10-13  9:54       ` Jonathan Cameron
2012-09-28 21:36 ` [PATCH 08/12] dtc: be more quiet with "make -s" Arnd Bergmann
2012-09-28 21:55   ` Stephen Warren
2012-09-29  7:27     ` Arnd Bergmann
2012-09-28 21:36 ` [PATCH 09/12] tty/console: fix warnings in drivers/tty/serial/kgdboc.c Arnd Bergmann
2012-09-28 21:45   ` Jason Wessel
2012-10-22 23:37     ` Greg Kroah-Hartman
2012-09-28 21:36 ` [PATCH 10/12] gpio: pcf857x: select IRQ_DOMAIN Arnd Bergmann
2012-09-30 21:39   ` Linus Walleij
2012-09-28 21:36 ` [PATCH 11/12] pinctrl: samsung: use __devinit section for init code Arnd Bergmann
2012-10-01  6:15   ` Linus Walleij
2012-10-02 11:52     ` Arnd Bergmann
2012-10-02 12:57       ` Linus Walleij
2012-10-02 20:28   ` Thierry Reding
2012-09-28 21:36 ` [PATCH 12/12] time/jiffies: bring back unconditional LATCH definition Arnd Bergmann
2012-09-28 21:55   ` John Stultz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).