diff options
author | Andrew F. Davis <afd@ti.com> | 2015-09-22 15:35:07 -0400 |
---|---|---|
committer | Sebastian Reichel <sre@kernel.org> | 2015-09-23 10:23:12 -0400 |
commit | 424cfde49acaf1426e90837961e8aead0238b11b (patch) | |
tree | 4916468deee9df2e8873ffd05e175bdd27349b54 /drivers/w1 | |
parent | 081bab217db769526c1202c87099ff69737126ae (diff) |
power: bq27xxx_battery: Platform initialization must declare a device
When initialized as a platform device the initializer must now specify
a device. An empty device name is no longer valid.
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r-- | drivers/w1/slaves/w1_bq27000.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/w1/slaves/w1_bq27000.c b/drivers/w1/slaves/w1_bq27000.c index 84805317a5ce..9f4a86b754ba 100644 --- a/drivers/w1/slaves/w1_bq27000.c +++ b/drivers/w1/slaves/w1_bq27000.c | |||
@@ -42,6 +42,7 @@ static int w1_bq27000_read(struct device *dev, unsigned int reg) | |||
42 | static struct bq27xxx_platform_data bq27000_battery_info = { | 42 | static struct bq27xxx_platform_data bq27000_battery_info = { |
43 | .read = w1_bq27000_read, | 43 | .read = w1_bq27000_read, |
44 | .name = "bq27000-battery", | 44 | .name = "bq27000-battery", |
45 | .chip = BQ27000, | ||
45 | }; | 46 | }; |
46 | 47 | ||
47 | static int w1_bq27000_add_slave(struct w1_slave *sl) | 48 | static int w1_bq27000_add_slave(struct w1_slave *sl) |