ENFS CVS: nexus/fs/proc Makefile,1.1,1.2 module.c,1.1,1.2
                
                Brought to you by:
                
                    tramm
                    
                
            
            
        
        
        
    | 
     
      
      
      From: Tramm H. <tr...@us...> - 2001-11-19 23:38:18
      
     
   | 
Update of /cvsroot/enfs/nexus/fs/proc
In directory usw-pr-cvs1:/tmp/cvs-serv32255/fs/proc
Modified Files:
	Makefile module.c 
Log Message:
Mega-sized commit:
 - Removed duplicate Makefile targets
 - Remove 'real-clean' taget
 - Tabulated lots of files
 - Checked licenses in most files
 - Fixed most every warning
 - Touched lots of files (merge warning!)
Tagged as 'before-mega-cleanup' before checkin.
Index: Makefile
===================================================================
RCS file: /cvsroot/enfs/nexus/fs/proc/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile	2001/11/06 16:10:12	1.1
+++ Makefile	2001/11/19 23:38:15	1.2
@@ -34,10 +34,10 @@
 all:	$(MODULE)
 
 $(MODULE): $(OBJ)
-	${LD} -shared -o $@ $(OBJ)
+	$(LD) -shared -o $@ $(OBJ)
 
 clean:
-	${RM}							\
+	$(RM)							\
 		$(MODULE)					\
 		*.o						\
 		*.a						\
Index: module.c
===================================================================
RCS file: /cvsroot/enfs/nexus/fs/proc/module.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- module.c	2001/11/06 16:10:12	1.1
+++ module.c	2001/11/19 23:38:15	1.2
@@ -26,7 +26,13 @@
 	struct creds *		crp
 );
 
-int init_module( module_t *mod, int argc, const char *argv[] )
+
+int
+init_module(
+	module_t *		mod			IS_UNUSED,
+	int			argc			IS_UNUSED,
+	const char *		argv[]			IS_UNUSED
+)
 {
 	/* We should probably do something... */
 	if( loaded++ > 0 ) {
@@ -44,7 +50,10 @@
 	return 0;
 }
 
-void unload_module( module_t *module )
+void
+unload_module(
+	module_t *		module			IS_UNUSED
+)
 {
 	LOG( LOG_INFO, "Unloading proc module\n" );
 	loaded = 0;
 |