diff options
author | Jon Smirl <jonsmirl@gmail.com> | 2008-10-19 22:13:15 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-21 00:17:49 -0400 |
commit | 0721357d4d04563b6e5c7ffd6b5685df275d5ff9 (patch) | |
tree | cb4b001a711eb3b108e94e32c4b386c6af3a899c | |
parent | a4292d7ae6fabcdbc41c3e0f0eb790a1429b985f (diff) |
of: Format string bug in drivers/of/of_i2c.c
Format string bug. Not exploitable, as this is only writable by root,
but worth fixing all the same.
See 326f6a5c9c9e1a62aec37bdc0c3f8d53adabe77b
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | drivers/of/of_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c index 6a98dc8aa30b..24bbef777c19 100644 --- a/drivers/of/of_i2c.c +++ b/drivers/of/of_i2c.c | |||
@@ -41,7 +41,7 @@ void of_register_i2c_devices(struct i2c_adapter *adap, | |||
41 | 41 | ||
42 | info.addr = *addr; | 42 | info.addr = *addr; |
43 | 43 | ||
44 | request_module(info.type); | 44 | request_module("%s", info.type); |
45 | 45 | ||
46 | result = i2c_new_device(adap, &info); | 46 | result = i2c_new_device(adap, &info); |
47 | if (result == NULL) { | 47 | if (result == NULL) { |