diff options
author | Nicolas Kaiser <nikai@nikai.net> | 2010-10-22 02:58:53 (GMT) |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-03-02 05:50:05 (GMT) |
commit | ae39573a19e35122bd431a4f5c889823209168c7 (patch) | |
tree | 749265b2b01a0bd7a7d57cfea5c0fc96356329e0 /arch | |
parent | dd9c1549edef02290edced639f67b54a25abbe0e (diff) | |
download | linux-ae39573a19e35122bd431a4f5c889823209168c7.tar.xz |
powerpc/mv64x60: Suspected typo in assignment
Untested, but looks like an obvious typo to me.
[BenH: No feedback, but it's obviously wrong]
Signed-off-by: Nicolas Kaiser <nikai@nikai.net>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/sysdev/mv64x60_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/mv64x60_dev.c b/arch/powerpc/sysdev/mv64x60_dev.c index feaee40..0f6af41 100644 --- a/arch/powerpc/sysdev/mv64x60_dev.c +++ b/arch/powerpc/sysdev/mv64x60_dev.c @@ -346,7 +346,7 @@ static int __init mv64x60_i2c_device_setup(struct device_node *np, int id) if (prop) pdata.freq_m = *prop; - pdata.freq_m = 3; /* default */ + pdata.freq_n = 3; /* default */ prop = of_get_property(np, "freq_n", NULL); if (prop) pdata.freq_n = *prop; |