Module Name: src
Committed By: cliff
Date: Wed Jul 20 03:42:55 UTC 2011
Modified Files:
src/sys/dev/nor: nor.c
Log Message:
replace 'nor_manufacturer_t' with 'struct nor_manufacturer'
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/nor/nor.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/dev/nor/nor.c
diff -u src/sys/dev/nor/nor.c:1.2 src/sys/dev/nor/nor.c:1.3
--- src/sys/dev/nor/nor.c:1.2 Fri Jul 15 19:37:41 2011
+++ src/sys/dev/nor/nor.c Wed Jul 20 03:42:55 2011
@@ -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" },