aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/nvidia/mcp55/sata.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/southbridge/nvidia/mcp55/sata.c')
-rw-r--r--src/southbridge/nvidia/mcp55/sata.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/nvidia/mcp55/sata.c b/src/southbridge/nvidia/mcp55/sata.c
index 78cd27a978..fa761d2ffd 100644
--- a/src/southbridge/nvidia/mcp55/sata.c
+++ b/src/southbridge/nvidia/mcp55/sata.c
@@ -39,16 +39,16 @@ static void sata_init(struct device *dev)
if (conf->sata1_enable) {
/* Enable secondary SATA interface */
dword |= (1<<0);
- printk(BIOS_DEBUG, "SATA S \t");
+ printk(BIOS_DEBUG, "SATA S\t");
}
if (conf->sata0_enable) {
/* Enable primary SATA interface */
dword |= (1<<1);
- printk(BIOS_DEBUG, "SATA P \n");
+ printk(BIOS_DEBUG, "SATA P\n");
}
} else {
dword |= (1<<1) | (1<<0);
- printk(BIOS_DEBUG, "SATA P and S \n");
+ printk(BIOS_DEBUG, "SATA P and S\n");
}