Commit f9c3d273 authored by Heikki Krogerus's avatar Heikki Krogerus Committed by Wolfram Sang

i2c: cht-wc: Constify the software node

Additional device properties are always just a part of a
software fwnode. If the device properties are constant, the
software node can also be constant.
Signed-off-by: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Reviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarWolfram Sang <wsa@kernel.org>
parent 3a3438e5
...@@ -280,6 +280,10 @@ static const struct property_entry bq24190_props[] = { ...@@ -280,6 +280,10 @@ static const struct property_entry bq24190_props[] = {
{ } { }
}; };
static const struct software_node bq24190_node = {
.properties = bq24190_props,
};
static struct regulator_consumer_supply fusb302_consumer = { static struct regulator_consumer_supply fusb302_consumer = {
.supply = "vbus", .supply = "vbus",
/* Must match fusb302 dev_name in intel_cht_int33fe.c */ /* Must match fusb302 dev_name in intel_cht_int33fe.c */
...@@ -308,7 +312,7 @@ static int cht_wc_i2c_adap_i2c_probe(struct platform_device *pdev) ...@@ -308,7 +312,7 @@ static int cht_wc_i2c_adap_i2c_probe(struct platform_device *pdev)
.type = "bq24190", .type = "bq24190",
.addr = 0x6b, .addr = 0x6b,
.dev_name = "bq24190", .dev_name = "bq24190",
.properties = bq24190_props, .swnode = &bq24190_node,
.platform_data = &bq24190_pdata, .platform_data = &bq24190_pdata,
}; };
int ret, reg, irq; int ret, reg, irq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment