Module Name: src
Committed By: pgoyette
Date: Sat Mar 3 05:27:02 UTC 2018
Modified Files:
src/sys/arch/x86/pci/imcsmb: imcsmb.c
Log Message:
Fix the attach message - needs a ": "
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/x86/pci/imcsmb/imcsmb.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/x86/pci/imcsmb/imcsmb.c
diff -u src/sys/arch/x86/pci/imcsmb/imcsmb.c:1.1 src/sys/arch/x86/pci/imcsmb/imcsmb.c:1.2
--- src/sys/arch/x86/pci/imcsmb/imcsmb.c:1.1 Thu Mar 1 04:45:06 2018
+++ src/sys/arch/x86/pci/imcsmb/imcsmb.c Sat Mar 3 05:27:02 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: imcsmb.c,v 1.1 2018/03/01 04:45:06 pgoyette Exp $ */
+/* $NetBSD: imcsmb.c,v 1.2 2018/03/03 05:27:02 pgoyette Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: imcsmb.c,v 1.1 2018/03/01 04:45:06 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: imcsmb.c,v 1.2 2018/03/03 05:27:02 pgoyette Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
@@ -123,7 +123,7 @@ imcsmb_attach(device_t parent, device_t
struct imc_attach_args *imca = aux;
aprint_naive("\n");
- aprint_normal("SMBus controller\n");
+ aprint_normal(": SMBus controller\n");
/* Initialize private state */
sc->sc_dev = self;