Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/nor replace 'nor_manufacturer_t' with 'struct nor_ma...



details:   https://anonhg.NetBSD.org/src/rev/63da8e01e287
branches:  trunk
changeset: 767496:63da8e01e287
user:      cliff <cliff%NetBSD.org@localhost>
date:      Wed Jul 20 03:42:55 2011 +0000

description:
replace 'nor_manufacturer_t' with 'struct nor_manufacturer'

diffstat:

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

diffs (27 lines):

diff -r 3d1549a75dd7 -r 63da8e01e287 sys/dev/nor/nor.c
--- a/sys/dev/nor/nor.c Wed Jul 20 00:53:53 2011 +0000
+++ b/sys/dev/nor/nor.c Wed Jul 20 03:42:55 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nor.c,v 1.2 2011/07/15 19:37:41 cliff Exp $    */
+/*     $NetBSD: nor.c,v 1.3 2011/07/20 03:42:55 cliff Exp $    */
 
 /*-
  * Copyright (c) 2011 Department of Software Engineering,
@@ -34,7 +34,7 @@
 /* Common driver for NOR chips implementing the ONFI CFI specification */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nor.c,v 1.2 2011/07/15 19:37:41 cliff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nor.c,v 1.3 2011/07/20 03:42:55 cliff Exp $");
 
 #include "locators.h"
 #include "opt_nor.h"
@@ -98,7 +98,7 @@
 };
 
 #ifdef NOR_VERBOSE
-const nor_manufacturer_t nor_mfrs[] = {
+const struct nor_manufacturer nor_mfrs[] = {
        { NOR_MFR_AMD,          "AMD" },
        { NOR_MFR_FUJITSU,      "Fujitsu" },
        { NOR_MFR_RENESAS,      "Renesas" },



Home | Main Index | Thread Index | Old Index