Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/sdmmc Print product name. like sd(4), wd(4) and etc...



details:   https://anonhg.NetBSD.org/src/rev/cdf0722cc74a
branches:  trunk
changeset: 757736:cdf0722cc74a
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Mon Sep 20 09:03:33 2010 +0000

description:
Print product name.  like sd(4), wd(4) and etc...

diffstat:

 sys/dev/sdmmc/ld_sdmmc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b3ea66bbed98 -r cdf0722cc74a sys/dev/sdmmc/ld_sdmmc.c
--- a/sys/dev/sdmmc/ld_sdmmc.c  Mon Sep 20 07:00:21 2010 +0000
+++ b/sys/dev/sdmmc/ld_sdmmc.c  Mon Sep 20 09:03:33 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ld_sdmmc.c,v 1.4 2009/11/28 10:00:24 nonaka Exp $      */
+/*     $NetBSD: ld_sdmmc.c,v 1.5 2010/09/20 09:03:33 kiyohara Exp $    */
 
 /*
  * Copyright (c) 2008 KIYOHARA Takashi
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ld_sdmmc.c,v 1.4 2009/11/28 10:00:24 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ld_sdmmc.c,v 1.5 2010/09/20 09:03:33 kiyohara Exp $");
 
 #include "rnd.h"
 
@@ -115,7 +115,7 @@
 
        ld->sc_dv = self;
 
-       aprint_normal("\n");
+       aprint_normal(": <%s>\n", sa->sf->cid.pnm);
        aprint_naive("\n");
 
        callout_init(&sc->sc_task.task_callout, CALLOUT_MPSAFE);



Home | Main Index | Thread Index | Old Index