Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/lkm/arch/mac68k/iwm If'n you change the name of the .o f...
details: https://anonhg.NetBSD.org/src/rev/699ef3b498b7
branches: trunk
changeset: 467962:699ef3b498b7
user: scottr <scottr%NetBSD.org@localhost>
date: Wed Mar 31 20:45:06 1999 +0000
description:
If'n you change the name of the .o file, you really ought
to change the entry point, too.
diffstat:
sys/lkm/arch/mac68k/iwm/iwm_mod.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r db2adf8f5eb2 -r 699ef3b498b7 sys/lkm/arch/mac68k/iwm/iwm_mod.c
--- a/sys/lkm/arch/mac68k/iwm/iwm_mod.c Wed Mar 31 19:22:56 1999 +0000
+++ b/sys/lkm/arch/mac68k/iwm/iwm_mod.c Wed Mar 31 20:45:06 1999 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: iwm_mod.c,v 1.3 1999/03/27 07:09:30 scottr Exp $ */
+/* $NetBSD: iwm_mod.c,v 1.4 1999/03/31 20:45:06 scottr Exp $ */
/*
* Copyright (c) 1997, 1998 Hauke Fath. All rights reserved.
@@ -51,7 +51,7 @@
int lkmdispatch __P((struct lkm_table *, int));
/* The module entry */
-int IWM_lkmentry __P((struct lkm_table *lkmtp, int cmd, int ver));
+int iwmfd_lkmentry __P((struct lkm_table *lkmtp, int cmd, int ver));
/* local */
static int load_module __P((struct lkm_table * lkmtp, int cmd));
@@ -98,7 +98,7 @@
static struct lkm_misc _module = {
LM_MISC,
LKM_VERSION,
- "IWM_lkmentry"
+ "iwmfd_lkmentry"
};
@@ -199,7 +199,7 @@
/*
- * IWM_lkmentry
+ * iwmfd_lkmentry
*
* External entry point; should generally match name of .o file.
*
@@ -207,7 +207,7 @@
* does not compile noiselessly with -Werror.
*/
int
-IWM_lkmentry (lkmtp, cmd, ver)
+iwmfd_lkmentry (lkmtp, cmd, ver)
struct lkm_table *lkmtp;
int cmd;
int ver;
Home |
Main Index |
Thread Index |
Old Index