This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Tue May 7 00:35:32 2024 Received: from spaans.ds9a.nl (adsl-xs4all.ds9a.nl [213.84.159.51]) by kylie.puddingonline.com (8.11.6/8.11.6) with SMTP id g8IDWSX24366 for ; Wed, 18 Sep 2002 15:32:28 +0200 Received: (qmail 5714 invoked from network); 18 Sep 2002 06:44:27 -0000 Received: from unknown (HELO spaans.ds9a.nl) (3ffe:8280:10:360:202:44ff:fe2a:a1dd) by mayo.ipv6.ds9a.nl with SMTP; 18 Sep 2002 06:44:27 -0000 Received: (qmail 13263 invoked by uid 1000); 17 Sep 2002 20:18:11 -0000 Received: (maildatabase); juh Received: (qmail 5327 invoked by alias); 11 Jun 2001 15:30:23 -0000 Received: (qmail 5324 invoked from network); 11 Jun 2001 15:30:22 -0000 Received: from vger.kernel.org (199.183.24.194) by spaans-smp.ds9a.tudelft.nl with SMTP; 11 Jun 2001 15:30:22 -0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 11 Jun 2001 11:27:34 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 11 Jun 2001 11:27:25 -0400 Received: from diamond.waii.com ([198.3.192.201]:50961 "EHLO diamond.waii.com") by vger.kernel.org with ESMTP id ; Mon, 11 Jun 2001 11:27:23 -0400 Received: from mail1.wg.waii.com (mail.wg.waii.com [137.144.128.17] (may be forged)) by diamond.waii.com (8.9.1/8.9.1) with ESMTP id KAA04709 for ; Mon, 11 Jun 2001 10:27:20 -0500 (CDT) Received: from uhura.wg.waii.com.wg.waii.com (uhura.wg.waii.com [137.144.130.80]) by mail1.wg.waii.com (8.8.7/8.8.7) with SMTP id KAA64324 for ; Mon, 11 Jun 2001 10:27:00 -0500 Received: from localhost by uhura.wg.waii.com.wg.waii.com (SMI-8.6/SMI-SVR4) id KAA25541; Mon, 11 Jun 2001 10:27:19 -0500 Date: Mon, 11 Jun 2001 10:27:19 -0500 (CDT) From: Art Haas To: linux-kernel@vger.kernel.org Subject: [PATCH] #endif warnings cleanup Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org Here's a trivial patch that changes ... #endif BLAH to #endif /* BLAH */ gcc-3.0 will flag this. Patch is relative to 2.4.5-ac13. Thanks to everyone working on the kernel! Art Haas ============================================== --- linux-2.4.5-ac13/include/asm-mips/watch.h.orig Sat May 13 10:31:25 2000 +++ linux-2.4.5-ac13/include/asm-mips/watch.h Mon Jun 11 10:15:56 2001 @@ -35,4 +35,4 @@ if (watch_available) \ __watch_reenable() -#endif __ASM_WATCH_H +#endif /* __ASM_WATCH_H */ --- linux-2.4.5-ac13/include/asm-m68k/pgtable.h.orig Mon Nov 27 20:00:49 2000 +++ linux-2.4.5-ac13/include/asm-m68k/pgtable.h Mon Jun 11 10:15:56 2001 @@ -160,7 +160,7 @@ #define pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) #define swp_entry_to_pte(x) ((pte_t) { (x).val }) -#endif CONFIG_SUN3 +#endif /* CONFIG_SUN3 */ #endif /* !__ASSEMBLY__ */ --- linux-2.4.5-ac13/include/asm-m68k/sun3-head.h.orig Sat Sep 4 15:06:41 1999 +++ linux-2.4.5-ac13/include/asm-m68k/sun3-head.h Mon Jun 11 10:15:56 2001 @@ -9,4 +9,4 @@ #define FC_SUPERD 5 #define FC_CPU 7 -#endif __SUN3_HEAD_H +#endif /* __SUN3_HEAD_H */ --- linux-2.4.5-ac13/include/asm-arm/arch-sa1100/SA-1101.h.orig Tue Feb 13 16:13:44 2001 +++ linux-2.4.5-ac13/include/asm-arm/arch-sa1100/SA-1101.h Mon Jun 11 10:25:37 2001 @@ -143,7 +143,7 @@ #define VMCCR_SDTCTest Fld(7,24) /* stale data timeout counter */ #define VMCCR_ForceSelfRef (1<<31) /* Force self refresh */ -#endif LANGUAGE == C +#endif /* LANGUAGE == C */ /* Update FIFO --- linux-2.4.5-ac13/include/asm-ia64/sn/hcl_util.h.orig Thu Jan 4 15:00:15 2001 +++ linux-2.4.5-ac13/include/asm-ia64/sn/hcl_util.h Mon Jun 11 10:16:03 2001 @@ -21,4 +21,4 @@ extern void *device_info_get(devfs_handle_t); -#endif _ASM_SN_HCL_UTIL_H +#endif /* _ASM_SN_HCL_UTIL_H */ --- linux-2.4.5-ac13/include/asm-ia64/sn/synergy.h.orig Thu Apr 12 14:16:36 2001 +++ linux-2.4.5-ac13/include/asm-ia64/sn/synergy.h Mon Jun 11 10:16:03 2001 @@ -165,4 +165,4 @@ /* Temporary defintions for testing: */ -#endif ASM_IA64_SN_SYNERGY_H +#endif /* ASM_IA64_SN_SYNERGY_H */ --- linux-2.4.5-ac13/include/asm-mips64/smp.h.orig Fri Mar 2 13:30:15 2001 +++ linux-2.4.5-ac13/include/asm-mips64/smp.h Mon Jun 11 10:15:56 2001 @@ -46,4 +46,4 @@ #define NO_PROC_ID (-1) -#endif __ASM_SMP_H +#endif /* __ASM_SMP_H */ --- linux-2.4.5-ac13/include/asm-s390/sigp.h.orig Wed Apr 11 21:02:28 2001 +++ linux-2.4.5-ac13/include/asm-s390/sigp.h Mon Jun 11 10:15:56 2001 @@ -154,6 +154,6 @@ return ccode; } -#endif __SIGP__ +#endif /* __SIGP__ */ --- linux-2.4.5-ac13/include/asm-cris/eshlibld.h.orig Fri Apr 6 12:51:19 2001 +++ linux-2.4.5-ac13/include/asm-cris/eshlibld.h Mon Jun 11 10:15:56 2001 @@ -109,6 +109,6 @@ # define shlibmod_fork(x) 1 #endif /* ! SHARE_LIB_CORE */ -#endif _cris_relocate_h +#endif /* _cris_relocate_h */ /********************** END OF FILE eshlibld.h *****************************/ --- linux-2.4.5-ac13/include/asm-s390x/sigp.h.orig Wed Apr 11 21:02:29 2001 +++ linux-2.4.5-ac13/include/asm-s390x/sigp.h Mon Jun 11 10:15:57 2001 @@ -153,6 +153,6 @@ return ccode; } -#endif __SIGP__ +#endif /* __SIGP__ */ --- linux-2.4.5-ac13/drivers/net/pcmcia/wavelan_cs.c.orig Wed Apr 25 16:36:23 2001 +++ linux-2.4.5-ac13/drivers/net/pcmcia/wavelan_cs.c Mon Jun 11 10:16:04 2001 @@ -22,7 +22,7 @@ #ifdef WAVELAN_ROAMING * Roaming support added 07/22/98 by Justin Seger (jseger@media.mit.edu) * based on patch by Joe Finney from Lancaster University. -#endif :-) +#endif /* :-) */ * * Lucent (formerly AT&T GIS, formerly NCR) WaveLAN PCMCIA card: An * Ethernet-like radio transceiver controlled by an Intel 82593 coprocessor. --- linux-2.4.5-ac13/drivers/net/myri_code.h.orig Wed Apr 23 21:01:20 1997 +++ linux-2.4.5-ac13/drivers/net/myri_code.h Mon Jun 11 10:15:58 2001 @@ -6284,4 +6284,4 @@ #define MYRI_NetReceiveBadCrcs 0xB8D4 #define MYRI_NetReceiveBytes 0xB8DC -#endif SYMBOL_DEFINES_COMPILED +#endif /* SYMBOL_DEFINES_COMPILED */ --- linux-2.4.5-ac13/drivers/char/pcxx.c.orig Tue May 22 12:23:16 2001 +++ linux-2.4.5-ac13/drivers/char/pcxx.c Mon Jun 11 10:15:59 2001 @@ -122,7 +122,7 @@ MODULE_PARM(numports, "1-4i"); # endif -#endif MODULE +#endif /* MODULE */ static int numcards = 1; static int nbdevs = 0; --- linux-2.4.5-ac13/drivers/ide/pdc4030.h.orig Sat Feb 26 22:32:14 2000 +++ linux-2.4.5-ac13/drivers/ide/pdc4030.h Mon Jun 11 10:16:02 2001 @@ -41,4 +41,4 @@ u8 pad[SECTOR_WORDS*4 - 32]; }; -#endif IDE_PROMISE_H +#endif /* IDE_PROMISE_H */ --- linux-2.4.5-ac13/drivers/s390/char/tape.c.orig Wed Apr 11 21:02:28 2001 +++ linux-2.4.5-ac13/drivers/s390/char/tape.c Mon Jun 11 10:16:06 2001 @@ -637,7 +637,7 @@ #endif #ifdef CONFIG_DEVFS_FS tape_devfs_root_entry=devfs_mk_dir (NULL, "tape", NULL); -#endif CONFIG_DEVFS_FS +#endif /* CONFIG_DEVFS_FS */ #ifdef TAPE_DEBUG debug_text_event (tape_debug_area,3,"dev detect"); @@ -778,7 +778,7 @@ } #ifdef CONFIG_DEVFS_FS devfs_unregister (tape_devfs_root_entry); -#endif CONFIG_DEVFS_FS +#endif /* CONFIG_DEVFS_FS */ #ifdef CONFIG_PROC_FS #if (LINUX_VERSION_CODE > KERNEL_VERSION(2,3,98)) remove_proc_entry ("devices", &proc_root); --- linux-2.4.5-ac13/drivers/s390/net/ctcmain.c.orig Wed Apr 18 16:40:07 2001 +++ linux-2.4.5-ac13/drivers/s390/net/ctcmain.c Mon Jun 11 10:16:06 2001 @@ -2819,7 +2819,7 @@ proc_net_unregister(ctc_dir.low_ino); #endif } -#endif MODULE +#endif /* MODULE */ /** * Create a device specific subdirectory in /proc/net/ctc/ with the @@ -2875,7 +2875,7 @@ privptr->proc_dentry->low_ino); #endif } -#endif MODULE +#endif /* MODULE */ /** * Setup related routines @@ -2992,7 +2992,7 @@ static param parms_array[MAX_STATIC_DEVICES]; static param *next_param = parms_array; #define alloc_param() ((next_param