diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-23 05:51:34 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-24 06:58:01 -0400 |
commit | 138decf83f6a973951ce7faf39094d964de7853a (patch) | |
tree | b7d60c4312d38a5aadb10c22a2a74cfe76780469 | |
parent | 37dd2badcfcec35f5e21a0926968d77a404f03c3 (diff) |
[POWERPC] drivers/of/of_i2c.c: Add MODULE_LICENSE
After commit 585468e5d5962660867c269e26f0a4b89a599473
([POWERPC] i2c: Fix build breakage introduced by OF helpers)
drivers/of/of_i2c.c needs a MODULE_LICENSE.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | drivers/of/of_i2c.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c index 631689171159..715a44471617 100644 --- a/drivers/of/of_i2c.c +++ b/drivers/of/of_i2c.c | |||
@@ -13,6 +13,7 @@ | |||
13 | 13 | ||
14 | #include <linux/i2c.h> | 14 | #include <linux/i2c.h> |
15 | #include <linux/of.h> | 15 | #include <linux/of.h> |
16 | #include <linux/module.h> | ||
16 | 17 | ||
17 | struct i2c_driver_device { | 18 | struct i2c_driver_device { |
18 | char *of_device; | 19 | char *of_device; |
@@ -113,3 +114,5 @@ void of_register_i2c_devices(struct i2c_adapter *adap, | |||
113 | } | 114 | } |
114 | } | 115 | } |
115 | EXPORT_SYMBOL(of_register_i2c_devices); | 116 | EXPORT_SYMBOL(of_register_i2c_devices); |
117 | |||
118 | MODULE_LICENSE("GPL"); | ||