Index: uspace/drv/platform/amdm37x/main.c
===================================================================
--- uspace/drv/platform/amdm37x/main.c	(revision af604092e35e8e60ad875a2e327638358cf3caf1)
+++ uspace/drv/platform/amdm37x/main.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -132,22 +132,22 @@
 
 static const amdm37x_fun_t amdm37x_funcs[] = {
-{
-	.name = "ohci",
-	.id = "usb/host=ohci",
-	.score = 90,
-	.hw_resources = { .resources = ohci_res, .count = ARRAY_SIZE(ohci_res) }
-},
-{
-	.name = "ehci",
-	.id = "usb/host=ehci",
-	.score = 90,
-	.hw_resources = { .resources = ehci_res, .count = ARRAY_SIZE(ehci_res) }
-},
-{
-	.name = "fb",
-	.id = "amdm37x&dispc",
-	.score = 90,
-	.hw_resources = { .resources = disp_res, .count = ARRAY_SIZE(disp_res) }
-},
+	{
+		.name = "ohci",
+		.id = "usb/host=ohci",
+		.score = 90,
+		.hw_resources = { .resources = ohci_res, .count = ARRAY_SIZE(ohci_res) }
+	},
+	{
+		.name = "ehci",
+		.id = "usb/host=ehci",
+		.score = 90,
+		.hw_resources = { .resources = ehci_res, .count = ARRAY_SIZE(ehci_res) }
+	},
+	{
+		.name = "fb",
+		.id = "amdm37x&dispc",
+		.score = 90,
+		.hw_resources = { .resources = disp_res, .count = ARRAY_SIZE(disp_res) }
+	},
 };
 
@@ -261,5 +261,5 @@
 };
 
-static hw_resource_list_t * amdm37x_get_resources(ddf_fun_t *fnode)
+static hw_resource_list_t *amdm37x_get_resources(ddf_fun_t *fnode)
 {
 	amdm37x_fun_t *fun = ddf_fun_data_get(fnode);
Index: uspace/drv/platform/amdm37x/prm/clock_control.h
===================================================================
--- uspace/drv/platform/amdm37x/prm/clock_control.h	(revision af604092e35e8e60ad875a2e327638358cf3caf1)
+++ uspace/drv/platform/amdm37x/prm/clock_control.h	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -64,12 +64,17 @@
 static inline unsigned sys_clk_freq_kHz(unsigned reg_val)
 {
-	switch(reg_val)
-	{
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_12M: return 12000;
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_13M: return 13000;
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_19_2M: return 19200;
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_26M: return 26000;
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_38_4M: return 38400;
-	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_16_8M: return 16800;
+	switch (reg_val) {
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_12M:
+		return 12000;
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_13M:
+		return 13000;
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_19_2M:
+		return 19200;
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_26M:
+		return 26000;
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_38_4M:
+		return 38400;
+	case CLOCK_CONTROL_PRM_CLKSEL_SYS_CLKIN_16_8M:
+		return 16800;
 	}
 	return 0;
Index: uspace/drv/platform/mac/mac.c
===================================================================
--- uspace/drv/platform/mac/mac.c	(revision af604092e35e8e60ad875a2e327638358cf3caf1)
+++ uspace/drv/platform/mac/mac.c	(revision 2c4e1cc2aa4f1a4b249af5c661e93ac170ba5158)
@@ -235,9 +235,9 @@
 
 static pio_window_ops_t fun_pio_window_ops = {
-        .get_pio_window = &mac_get_pio_window
+	.get_pio_window = &mac_get_pio_window
 };
 
 static hw_res_ops_t fun_hw_res_ops = {
-   	.get_resource_list = &mac_get_resources,
+	.get_resource_list = &mac_get_resources,
 	.enable_interrupt = &mac_enable_interrupt
 };
