diff options
author | Olof Johansson <olof@lixom.net> | 2014-05-19 22:06:02 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-05-19 22:06:36 -0700 |
commit | 9e05f9f300828aecb84659cedc6399b7a76683ef (patch) | |
tree | c335cb4d73c1b6f222fa855756c7096b7f1308e3 /drivers/phy/phy-core.c | |
parent | a501fd37f77a703a8710af8f6964e0ae269df973 (diff) | |
parent | c7cff54d5926e3f419c23eff2ebaf6f5e12da05d (diff) | |
download | talos-op-linux-9e05f9f300828aecb84659cedc6399b7a76683ef.tar.gz talos-op-linux-9e05f9f300828aecb84659cedc6399b7a76683ef.zip |
Merge tag 'sirf-soc-for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux into next/cleanup
Merge "ARM: sirf: machine update for 3.16" from Barry Song:
Most of them fix some minor checkpatch issues according to key customers'
requirement. And this patchset also cleanups the clk of clocksource: move
to get clk by dts properity.
* tag 'sirf-soc-for-3.16' of git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux:
clocksource:sirf: remove the hardcode for the clk of timers
irqchip: sirf: fix one minor checkpatch issue
clocksource: prima2: fix some minor checkpatch issues
ARM: prima2: rstc: fix some minor checkpatch issues
+ Linux 3.15-rc3
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/phy/phy-core.c')
-rw-r--r-- | drivers/phy/phy-core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c index 623b71c54b3e..c64a2f3b2d62 100644 --- a/drivers/phy/phy-core.c +++ b/drivers/phy/phy-core.c @@ -64,6 +64,9 @@ static struct phy *phy_lookup(struct device *device, const char *port) class_dev_iter_init(&iter, phy_class, NULL, NULL); while ((dev = class_dev_iter_next(&iter))) { phy = to_phy(dev); + + if (!phy->init_data) + continue; count = phy->init_data->num_consumers; consumers = phy->init_data->consumers; while (count--) { |