lenovo/t400/dock.c: Fix issues found by checkpatch.pl

Change-Id: If7ebab8af1ae0c048cb89c2feb5f6a65848b6952
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/18767
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
diff --git a/src/mainboard/lenovo/t400/dock.c b/src/mainboard/lenovo/t400/dock.c
index a3412bf..65dd6f0 100644
--- a/src/mainboard/lenovo/t400/dock.c
+++ b/src/mainboard/lenovo/t400/dock.c
@@ -58,7 +58,7 @@
 	pnp_set_iobase(gpio, PNP_IDX_IO0, gpio_base);
 	pnp_set_enable(gpio, 1);
 
-	for (i=0; i < num_cfgs; i++) {
+	for (i = 0; i < num_cfgs; i++) {
 		pnp_write_config(gpio, 0xf0, pincfg[i].port);
 		pnp_write_config(gpio, 0xf1, pincfg[i].mode);
 		pnp_write_config(gpio, 0xf2, 0x0);
@@ -92,7 +92,7 @@
 	/* Reset docking state */
 	outb(0x00, dlpc_base);
 	outb(0x07, dlpc_base);
-	while(!(inb(dlpc_base) & 8) && timeout--)
+	while (!(inb(dlpc_base) & 8) && timeout--)
 		udelay(1000);
 	if (!timeout)
 		return 1;
@@ -111,7 +111,7 @@
 }
 
 static const struct pin_config local_gpio[] = {
-	{0x00, 3}, 	{0x01, 3},	{0x02, 0},	{0x03, 3},
+	{0x00, 3},	{0x01, 3},	{0x02, 0},	{0x03, 3},
 	{0x04, 4},	{0x20, 4},	{0x21, 4},	{0x23, 4},
 };
 
@@ -132,9 +132,8 @@
 	/* Deassert D_PLTRST# and D_LPCPD# */
 	outb(reg, DLPC_GPDO0);
 
-	if (pc87382_init(l_dlpc, DLPC_CONTROL) != 0) {
+	if (pc87382_init(l_dlpc, DLPC_CONTROL) != 0)
 		return 1;
-	}
 
 	/* Assert D_PLTRST# */
 	reg &= ~D_PLTRST;
@@ -144,7 +143,7 @@
 	/* Deassert D_PLTRST# */
 	reg |= D_PLTRST;
 	outb(reg, DLPC_GPDO0);
-	udelay(10000);
+	mdelay(10);
 
 	return 0;
 }