diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-22 02:00:41 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-22 02:00:41 -0400 |
commit | 8437de04d1475ee4af43a217ac2ca74eb9f58ad1 (patch) | |
tree | b8481a64ea0bcb0a6b2f8d27f0c26e39726f0a03 /arch/arm/plat-samsung | |
parent | 3aec092eed5d8d2b19a62b0aeed3acea9471099a (diff) | |
parent | 13acc291191281e2980e56dbe3a3d80ce677c9a8 (diff) |
Merge branch 'next/devel-samsung' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/soc
Misc SoC-related fixes/cleanups for Samsung platforms
* 'next/devel-samsung' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
ARM: SAMSUNG: Add check for NULL in clock interface
ARM: EXYNOS: Put PCM, Slimbus, Spdif clocks to off state
ARM: EXYNOS: Add bus clock for FIMD
ARM: SAMSUNG: Fix HDMI related warnings
ARM: S3C24XX: Add .get_rate callback for "camif-upll" clock
ARM: EXYNOS: Fix incorrect help text
ARM: EXYNOS: Turn off clocks for NAND, OneNAND and TSI controllers
+ sync to 3.6-rc6
Diffstat (limited to 'arch/arm/plat-samsung')
-rw-r--r-- | arch/arm/plat-samsung/clock.c | 8 | ||||
-rw-r--r-- | arch/arm/plat-samsung/devs.c | 3 |
2 files changed, 6 insertions, 5 deletions
diff --git a/arch/arm/plat-samsung/clock.c b/arch/arm/plat-samsung/clock.c index 65c5eca475e7..7938fbce825e 100644 --- a/arch/arm/plat-samsung/clock.c +++ b/arch/arm/plat-samsung/clock.c | |||
@@ -119,7 +119,7 @@ void clk_disable(struct clk *clk) | |||
119 | 119 | ||
120 | unsigned long clk_get_rate(struct clk *clk) | 120 | unsigned long clk_get_rate(struct clk *clk) |
121 | { | 121 | { |
122 | if (IS_ERR(clk)) | 122 | if (IS_ERR_OR_NULL(clk)) |
123 | return 0; | 123 | return 0; |
124 | 124 | ||
125 | if (clk->rate != 0) | 125 | if (clk->rate != 0) |
@@ -136,7 +136,7 @@ unsigned long clk_get_rate(struct clk *clk) | |||
136 | 136 | ||
137 | long clk_round_rate(struct clk *clk, unsigned long rate) | 137 | long clk_round_rate(struct clk *clk, unsigned long rate) |
138 | { | 138 | { |
139 | if (!IS_ERR(clk) && clk->ops && clk->ops->round_rate) | 139 | if (!IS_ERR_OR_NULL(clk) && clk->ops && clk->ops->round_rate) |
140 | return (clk->ops->round_rate)(clk, rate); | 140 | return (clk->ops->round_rate)(clk, rate); |
141 | 141 | ||
142 | return rate; | 142 | return rate; |
@@ -146,7 +146,7 @@ int clk_set_rate(struct clk *clk, unsigned long rate) | |||
146 | { | 146 | { |
147 | int ret; | 147 | int ret; |
148 | 148 | ||
149 | if (IS_ERR(clk)) | 149 | if (IS_ERR_OR_NULL(clk)) |
150 | return -EINVAL; | 150 | return -EINVAL; |
151 | 151 | ||
152 | /* We do not default just do a clk->rate = rate as | 152 | /* We do not default just do a clk->rate = rate as |
@@ -175,7 +175,7 @@ int clk_set_parent(struct clk *clk, struct clk *parent) | |||
175 | { | 175 | { |
176 | int ret = 0; | 176 | int ret = 0; |
177 | 177 | ||
178 | if (IS_ERR(clk)) | 178 | if (IS_ERR_OR_NULL(clk) || IS_ERR_OR_NULL(parent)) |
179 | return -EINVAL; | 179 | return -EINVAL; |
180 | 180 | ||
181 | spin_lock(&clocks_lock); | 181 | spin_lock(&clocks_lock); |
diff --git a/arch/arm/plat-samsung/devs.c b/arch/arm/plat-samsung/devs.c index 6ff45d53362c..565cea74d446 100644 --- a/arch/arm/plat-samsung/devs.c +++ b/arch/arm/plat-samsung/devs.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <plat/ehci.h> | 51 | #include <plat/ehci.h> |
52 | #include <plat/fb.h> | 52 | #include <plat/fb.h> |
53 | #include <plat/fb-s3c2410.h> | 53 | #include <plat/fb-s3c2410.h> |
54 | #include <plat/hdmi.h> | ||
54 | #include <plat/hwmon.h> | 55 | #include <plat/hwmon.h> |
55 | #include <plat/iic.h> | 56 | #include <plat/iic.h> |
56 | #include <plat/keypad.h> | 57 | #include <plat/keypad.h> |
@@ -762,7 +763,7 @@ void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd) | |||
762 | &s5p_device_i2c_hdmiphy); | 763 | &s5p_device_i2c_hdmiphy); |
763 | } | 764 | } |
764 | 765 | ||
765 | struct s5p_hdmi_platform_data s5p_hdmi_def_platdata; | 766 | static struct s5p_hdmi_platform_data s5p_hdmi_def_platdata; |
766 | 767 | ||
767 | void __init s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info, | 768 | void __init s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info, |
768 | struct i2c_board_info *mhl_info, int mhl_bus) | 769 | struct i2c_board_info *mhl_info, int mhl_bus) |