diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2007-09-20 06:42:12 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-10-04 12:02:57 -0400 |
commit | 210805e219f781d0a0efbdbe41d59f6fccef529c (patch) | |
tree | 96f17f08a2c20cc7cf6dc4c2b6a08fe26c5c11bb /arch/powerpc/sysdev/fsl_soc.c | |
parent | 5dd57a1308a7e40e04fb6ecbff170df7a0b92cd8 (diff) |
[POWERPC] fsl_soc: Fix trivial printk typo.
Fix a trivial printk typo in fsl_soc.
Cc: G. Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/fsl_soc.c')
-rw-r--r-- | arch/powerpc/sysdev/fsl_soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/fsl_soc.c b/arch/powerpc/sysdev/fsl_soc.c index b465b30c9547..ef880cb54c1d 100644 --- a/arch/powerpc/sysdev/fsl_soc.c +++ b/arch/powerpc/sysdev/fsl_soc.c | |||
@@ -363,7 +363,7 @@ static void __init of_register_i2c_devices(struct device_node *adap_node, | |||
363 | 363 | ||
364 | addr = of_get_property(node, "reg", &len); | 364 | addr = of_get_property(node, "reg", &len); |
365 | if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) { | 365 | if (!addr || len < sizeof(int) || *addr > (1 << 10) - 1) { |
366 | printk(KERN_WARNING "fsl_ioc.c: invalid i2c device entry\n"); | 366 | printk(KERN_WARNING "fsl_soc.c: invalid i2c device entry\n"); |
367 | continue; | 367 | continue; |
368 | } | 368 | } |
369 | 369 | ||