All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] recently added ARM defconfig warnings
@ 2012-08-08 14:47 ` Arnd Bergmann
  0 siblings, 0 replies; 72+ messages in thread
From: Arnd Bergmann @ 2012-08-08 14:47 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Takashi Iwai, Linus Walleij, Grant Likely, Laxman Dewangan,
	Philipp Zabel, Giuseppe Cavallaro, Stefan Roese, Lee Jones,
	Kukjin Kim, Vincent Guittot, Samuel Ortiz, arm, Alan Stern,
	Grazvydas Ignotas, Paul Parsons, Russell King, Peter Zijlstra,
	Arnd Bergmann, Thomas Abraham, Rafael J. Wysocki,
	Jaswinder Singh, Magnus Damm, Namhyung Kim, Greg

These patches address problems that showed up in new warnings
when building all ARM defconfig files in v3.6-rc1 compared
with v3.5.

I can merge them through the arm-soc tree or have subsystem
maintainers pick them up if they prefer.

Arnd Bergmann (11):
  ARM: topology: mark init_cpu_topology as __init
  mfd/asic3: fix asic3_mfd_probe return value
  usb/ohci-omap: remove unused variable
  ARM: ux500: really kill snowball_of_platform_devs
  ARM: exynos: exynos_pm_add_dev_to_genpd may be unused
  gpio: em: do not discard em_gio_irq_domain_cleanup
  net/stmmac: mark probe function as __devinit
  mtd/omap2: fix dmaengine_slave_config error handling
  regulator/twl: remove fixed resource handling
  spi/s3c64xx: improve error handling
  pm/drivers: fix use of SIMPLE_DEV_PM_OPS

Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: David S. Miller <davem@davemloft.net>
Cc: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Grazvydas Ignotas <notasas@gmail.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Jaswinder Singh <jaswinder.singh@linaro.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Cc: Laxman Dewangan <ldewangan@nvidia.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Magnus Damm <damm@opensource.se>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Parsons <lost.distance@yahoo.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Philipp Zabel <philipp.zabel@gmail.com>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Richard Zhao <richard.zhao@freescale.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Stefan Roese <sr@denx.de>
Cc: Takashi Iwai <tiwai@suse.de>
Cc: Thomas Abraham <thomas.abraham@linaro.org>
Cc: Vincent Guittot <vincent.guittot@linaro.org>
Cc: netdev@vger.kernel.org

 arch/arm/kernel/topology.c                         |    2 +-
 arch/arm/mach-exynos/pm_domains.c                  |    2 +-
 arch/arm/mach-ux500/board-mop500.c                 |    5 -----
 drivers/char/hw_random/omap-rng.c                  |    2 +-
 drivers/gpio/gpio-em.c                             |    2 +-
 drivers/i2c/busses/i2c-tegra.c                     |    2 +-
 drivers/mfd/asic3.c                                |    1 +
 drivers/mtd/nand/omap2.c                           |    7 +++----
 .../net/ethernet/stmicro/stmmac/stmmac_platform.c  |    2 +-
 drivers/regulator/twl-regulator.c                  |   21 --------------------
 drivers/spi/spi-s3c64xx.c                          |    2 +-
 drivers/usb/host/ohci-omap.c                       |    2 --
 sound/drivers/dummy.c                              |    2 +-
 13 files changed, 12 insertions(+), 40 deletions(-)

-- 
1.7.10

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

end of thread, other threads:[~2012-08-20  8:33 UTC | newest]

Thread overview: 72+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-08 14:47 [PATCH 00/11] recently added ARM defconfig warnings Arnd Bergmann
2012-08-08 14:47 ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 01/11] ARM: topology: mark init_cpu_topology as __init Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 17:53   ` Stephen Boyd
2012-08-08 17:53     ` Stephen Boyd
2012-08-08 19:14     ` Arnd Bergmann
2012-08-08 19:14       ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 02/11] mfd/asic3: fix asic3_mfd_probe return value Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 03/11] usb/ohci-omap: remove unused variable Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 15:25   ` Greg Kroah-Hartman
2012-08-08 15:25     ` Greg Kroah-Hartman
2012-08-08 15:34   ` Alan Stern
2012-08-08 15:34     ` Alan Stern
2012-08-08 14:47 ` [PATCH 04/11] ARM: ux500: really kill snowball_of_platform_devs Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 16:22   ` Lee Jones
2012-08-08 16:22     ` Lee Jones
2012-08-08 17:19     ` Arnd Bergmann
2012-08-08 17:19       ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 05/11] ARM: exynos: exynos_pm_add_dev_to_genpd may be unused Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-10  6:48   ` Kukjin Kim
2012-08-10  6:48     ` Kukjin Kim
2012-08-10  6:57   ` Thomas Abraham
2012-08-10  6:57     ` Thomas Abraham
2012-08-08 14:47 ` [PATCH 06/11] gpio: em: do not discard em_gio_irq_domain_cleanup Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-10 10:59   ` Linus Walleij
2012-08-10 10:59     ` Linus Walleij
2012-08-10 11:33     ` Arnd Bergmann
2012-08-10 11:33       ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 07/11] net/stmmac: mark probe function as __devinit Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 15:07   ` Stefan Roese
2012-08-08 15:07     ` Stefan Roese
2012-08-08 23:08   ` David Miller
2012-08-08 23:08     ` David Miller
2012-08-08 14:47 ` [PATCH 08/11] mtd/omap2: fix dmaengine_slave_config error handling Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 09/11] regulator/twl: remove fixed resource handling Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 14:50   ` Mark Brown
2012-08-08 14:50     ` Mark Brown
2012-08-08 15:06     ` Arnd Bergmann
2012-08-08 15:06       ` Arnd Bergmann
2012-08-08 14:47 ` [PATCH 10/11] spi/s3c64xx: improve error handling Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-10  6:39   ` Kukjin Kim
2012-08-10  6:39     ` Kukjin Kim
2012-08-10  7:34     ` Arnd Bergmann
2012-08-10  7:34       ` Arnd Bergmann
2012-08-10  6:58   ` Thomas Abraham
2012-08-10  6:58     ` Thomas Abraham
2012-08-08 14:47 ` [PATCH 11/11] pm/drivers: fix use of SIMPLE_DEV_PM_OPS Arnd Bergmann
2012-08-08 14:47   ` Arnd Bergmann
2012-08-08 15:40   ` Stephen Warren
2012-08-08 15:40     ` Stephen Warren
2012-08-08 16:22     ` Arnd Bergmann
2012-08-08 16:22       ` Arnd Bergmann
2012-08-08 16:43       ` Takashi Iwai
2012-08-08 16:43         ` Takashi Iwai
2012-08-08 17:26         ` Arnd Bergmann
2012-08-08 17:26           ` Arnd Bergmann
2012-08-08 19:25           ` Rafael J. Wysocki
2012-08-08 19:25             ` Rafael J. Wysocki
2012-08-20  8:32           ` Herbert Xu
2012-08-20  8:32             ` Herbert Xu
2012-08-08 18:11   ` Kevin Hilman
2012-08-08 18:11     ` Kevin Hilman

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.