9
0
Fork 0

sysmobts: run lindent

Signed-off-by: Jan Luebbe <jluebbe@debian.org>
This commit is contained in:
Jan Luebbe 2015-06-14 12:13:30 +02:00 committed by Holger Hans Peter Freyther
parent c5cd569198
commit b6dbcd408a
2 changed files with 34 additions and 30 deletions

View File

@ -76,7 +76,8 @@ static struct device_d dm644x_emac_device = {
.platform_data = &dm644x_emac_pdata, .platform_data = &dm644x_emac_pdata,
}; };
static void sysmobts_config_eeprom(const char *compatible) { static void sysmobts_config_eeprom(const char *compatible)
{
struct device_node *node; struct device_node *node;
node = of_find_node_by_path("/i2c/eeprom@50"); node = of_find_node_by_path("/i2c/eeprom@50");
@ -84,7 +85,8 @@ static void sysmobts_config_eeprom(const char *compatible) {
pr_err("can't find eeprom node to configure\n"); pr_err("can't find eeprom node to configure\n");
return; return;
} }
of_set_property(node, "compatible", compatible, strlen(compatible)+1, 1); of_set_property(node, "compatible", compatible, strlen(compatible) + 1,
1);
of_device_enable(node); of_device_enable(node);
} }
@ -175,6 +177,7 @@ static int sysmobts_coredevices_init(void)
return 0; return 0;
} }
coredevice_initcall(sysmobts_coredevices_init); coredevice_initcall(sysmobts_coredevices_init);
static int sysmobts_devices_init(void) static int sysmobts_devices_init(void)
@ -188,4 +191,5 @@ static int sysmobts_devices_init(void)
return 0; return 0;
} }
device_initcall(sysmobts_devices_init); device_initcall(sysmobts_devices_init);