diff options
author | Laurent Riffard <laurent.riffard@free.fr> | 2005-10-17 16:53:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-10-28 17:02:11 -0400 |
commit | e78f857cc5299c3f6b3d046084696ef205948837 (patch) | |
tree | ff83d0b12d252becaa211f99da5b9e1f9c74f9b7 /drivers/i2c | |
parent | 0cf3628181660be4e21fe520766dcbc3da9d71c8 (diff) |
[PATCH] Owner field additions to many i2c drivers, 3 of 5
This patch updates the .owner field for various struct xxxx_driver
variables which are available on PPC_MAC arch.
This one was _not_ even compile-tested...
Signed-off-by: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-keywest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-keywest.c b/drivers/i2c/busses/i2c-keywest.c index eff5896ce865..34e43c8d8d5e 100644 --- a/drivers/i2c/busses/i2c-keywest.c +++ b/drivers/i2c/busses/i2c-keywest.c | |||
@@ -716,6 +716,7 @@ static struct of_device_id i2c_keywest_match[] = | |||
716 | 716 | ||
717 | static struct macio_driver i2c_keywest_macio_driver = | 717 | static struct macio_driver i2c_keywest_macio_driver = |
718 | { | 718 | { |
719 | .owner = THIS_MODULE, | ||
719 | .name = "i2c-keywest", | 720 | .name = "i2c-keywest", |
720 | .match_table = i2c_keywest_match, | 721 | .match_table = i2c_keywest_match, |
721 | .probe = create_iface_macio, | 722 | .probe = create_iface_macio, |
@@ -724,6 +725,7 @@ static struct macio_driver i2c_keywest_macio_driver = | |||
724 | 725 | ||
725 | static struct of_platform_driver i2c_keywest_of_platform_driver = | 726 | static struct of_platform_driver i2c_keywest_of_platform_driver = |
726 | { | 727 | { |
728 | .owner = THIS_MODULE, | ||
727 | .name = "i2c-keywest", | 729 | .name = "i2c-keywest", |
728 | .match_table = i2c_keywest_match, | 730 | .match_table = i2c_keywest_match, |
729 | .probe = create_iface_of_platform, | 731 | .probe = create_iface_of_platform, |