ARM: s3c: mini2440: 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: Heikki Krogerus <heikki.krogerus@linux.intel.com> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
Родитель
4335168600
Коммит
dc317fb81b
|
@ -542,10 +542,14 @@ static const struct property_entry mini2440_at24_properties[] = {
|
|||
{ }
|
||||
};
|
||||
|
||||
static const struct software_node mini2440_at24_node = {
|
||||
.properties = mini2440_at24_properties,
|
||||
};
|
||||
|
||||
static struct i2c_board_info mini2440_i2c_devs[] __initdata = {
|
||||
{
|
||||
I2C_BOARD_INFO("24c08", 0x50),
|
||||
.properties = mini2440_at24_properties,
|
||||
.swnode = &mini2440_at24_node,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче