diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-08-10 12:28:57 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-08-10 12:28:57 +0200 |
commit | b64456a4fc9b91c55c5eb84fc98ecf28a88f9bd0 (patch) | |
tree | 5b13b085014faa2b683c9721cbdb4f2272d90e7f /arch/arm | |
parent | a33493775dd141a99bcd2aac9a5b6b7e8385b5a4 (diff) | |
parent | 59596df640eb049952dbfe5e7e64ffe826abfe61 (diff) | |
download | op-kernel-dev-b64456a4fc9b91c55c5eb84fc98ecf28a88f9bd0.zip op-kernel-dev-b64456a4fc9b91c55c5eb84fc98ecf28a88f9bd0.tar.gz |
Merge branch 'testing/new-warnings' into fixes
These patches all fix bugs that were newly introduced in v3.6-rc1
and found because they cause a gcc warning with one of the ARM
defconfigs. Most of them are harmless, but since we're trying
to get rid of all warnings eventually, we can start with the ones
that were not there before.
* testing/new-warnings:
omap-rng: fix use of SIMPLE_DEV_PM_OPS
spi/s3c64xx: improve error handling
mtd/omap2: fix dmaengine_slave_config error handling
gpio: em: do not discard em_gio_irq_domain_cleanup
ARM: exynos: exynos_pm_add_dev_to_genpd may be unused
usb/ohci-omap: remove unused variable
mfd/asic3: fix asic3_mfd_probe return value
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-exynos/pm_domains.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c index 373c3c0..c0bc83a 100644 --- a/arch/arm/mach-exynos/pm_domains.c +++ b/arch/arm/mach-exynos/pm_domains.c @@ -115,7 +115,7 @@ static __init int exynos_pm_dt_parse_domains(void) } #endif /* CONFIG_OF */ -static __init void exynos_pm_add_dev_to_genpd(struct platform_device *pdev, +static __init __maybe_unused void exynos_pm_add_dev_to_genpd(struct platform_device *pdev, struct exynos_pm_domain *pd) { if (pdev->dev.bus) { |