Skip to content

Commit fa60ce2

Browse files
masahir0ytorvalds
authored andcommitted
treewide: remove editor modelines and cruft
The section "19) Editor modelines and other cruft" in Documentation/process/coding-style.rst clearly says, "Do not include any of these in source files." I recently receive a patch to explicitly add a new one. Let's do treewide cleanups, otherwise some people follow the existing code and attempt to upstream their favoriate editor setups. It is even nicer if scripts/checkpatch.pl can check it. If we like to impose coding style in an editor-independent manner, I think editorconfig (patch [1]) is a saner solution. [1] https://lore.kernel.org/lkml/[email protected]/ Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Masahiro Yamada <[email protected]> Acked-by: Geert Uytterhoeven <[email protected]> Reviewed-by: Miguel Ojeda <[email protected]> [auxdisplay] Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 7497835 commit fa60ce2

File tree

157 files changed

+110
-627
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+110
-627
lines changed

arch/m68k/atari/time.c

-7
Original file line numberDiff line numberDiff line change
@@ -317,10 +317,3 @@ int atari_tt_hwclk( int op, struct rtc_time *t )
317317

318318
return( 0 );
319319
}
320-
321-
/*
322-
* Local variables:
323-
* c-indent-level: 4
324-
* tab-width: 8
325-
* End:
326-
*/

arch/parisc/include/asm/pdc_chassis.h

-1
Original file line numberDiff line numberDiff line change
@@ -365,4 +365,3 @@ void parisc_pdc_chassis_init(void);
365365
PDC_CHASSIS_EOM_SET )
366366

367367
#endif /* _PARISC_PDC_CHASSIS_H */
368-
/* vim: set ts=8 */

arch/um/drivers/cow.h

-7
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,3 @@ extern void cow_sizes(int version, __u64 size, int sectorsize, int align,
2424
int *data_offset_out);
2525

2626
#endif
27-
28-
/*
29-
* ---------------------------------------------------------------------------
30-
* Local variables:
31-
* c-file-style: "linux"
32-
* End:
33-
*/

drivers/auxdisplay/panel.c

-7
Original file line numberDiff line numberDiff line change
@@ -1737,10 +1737,3 @@ module_init(panel_init_module);
17371737
module_exit(panel_cleanup_module);
17381738
MODULE_AUTHOR("Willy Tarreau");
17391739
MODULE_LICENSE("GPL");
1740-
1741-
/*
1742-
* Local variables:
1743-
* c-indent-level: 4
1744-
* tab-width: 8
1745-
* End:
1746-
*/

drivers/gpu/drm/qxl/qxl_drv.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* vim: set ts=8 sw=8 tw=78 ai noexpandtab */
21
/* qxl_drv.c -- QXL driver -*- linux-c -*-
32
*
43
* Copyright 2011 Red Hat, Inc.

drivers/media/usb/pwc/pwc-uncompress.c

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
Please send bug reports and support requests to <[email protected]>.
1010
The decompression routines have been implemented by reverse-engineering the
1111
Nemosoft binary pwcx module. Caveat emptor.
12-
13-
14-
vim: set ts=8:
1512
*/
1613

1714
#include <asm/current.h>

drivers/net/ethernet/adaptec/starfire.c

-8
Original file line numberDiff line numberDiff line change
@@ -2070,11 +2070,3 @@ static void __exit starfire_cleanup (void)
20702070

20712071
module_init(starfire_init);
20722072
module_exit(starfire_cleanup);
2073-
2074-
2075-
/*
2076-
* Local variables:
2077-
* c-basic-offset: 8
2078-
* tab-width: 8
2079-
* End:
2080-
*/

drivers/net/ethernet/amd/atarilance.c

-8
Original file line numberDiff line numberDiff line change
@@ -1156,11 +1156,3 @@ static void __exit atarilance_module_exit(void)
11561156
module_init(atarilance_module_init);
11571157
module_exit(atarilance_module_exit);
11581158
#endif /* MODULE */
1159-
1160-
1161-
/*
1162-
* Local variables:
1163-
* c-indent-level: 4
1164-
* tab-width: 4
1165-
* End:
1166-
*/

drivers/net/ethernet/amd/pcnet32.c

-7
Original file line numberDiff line numberDiff line change
@@ -3029,10 +3029,3 @@ static void __exit pcnet32_cleanup_module(void)
30293029

30303030
module_init(pcnet32_init_module);
30313031
module_exit(pcnet32_cleanup_module);
3032-
3033-
/*
3034-
* Local variables:
3035-
* c-indent-level: 4
3036-
* tab-width: 8
3037-
* End:
3038-
*/

drivers/net/wireless/intersil/orinoco/orinoco_nortel.c

-8
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,3 @@ static void __exit orinoco_nortel_exit(void)
312312

313313
module_init(orinoco_nortel_init);
314314
module_exit(orinoco_nortel_exit);
315-
316-
/*
317-
* Local variables:
318-
* c-indent-level: 8
319-
* c-basic-offset: 8
320-
* tab-width: 8
321-
* End:
322-
*/

drivers/net/wireless/intersil/orinoco/orinoco_pci.c

-8
Original file line numberDiff line numberDiff line change
@@ -255,11 +255,3 @@ static void __exit orinoco_pci_exit(void)
255255

256256
module_init(orinoco_pci_init);
257257
module_exit(orinoco_pci_exit);
258-
259-
/*
260-
* Local variables:
261-
* c-indent-level: 8
262-
* c-basic-offset: 8
263-
* tab-width: 8
264-
* End:
265-
*/

drivers/net/wireless/intersil/orinoco/orinoco_plx.c

-8
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,3 @@ static void __exit orinoco_plx_exit(void)
360360

361361
module_init(orinoco_plx_init);
362362
module_exit(orinoco_plx_exit);
363-
364-
/*
365-
* Local variables:
366-
* c-indent-level: 8
367-
* c-basic-offset: 8
368-
* tab-width: 8
369-
* End:
370-
*/

drivers/net/wireless/intersil/orinoco/orinoco_tmd.c

-8
Original file line numberDiff line numberDiff line change
@@ -235,11 +235,3 @@ static void __exit orinoco_tmd_exit(void)
235235

236236
module_init(orinoco_tmd_init);
237237
module_exit(orinoco_tmd_exit);
238-
239-
/*
240-
* Local variables:
241-
* c-indent-level: 8
242-
* c-basic-offset: 8
243-
* tab-width: 8
244-
* End:
245-
*/

drivers/parport/parport_ip32.c

-12
Original file line numberDiff line numberDiff line change
@@ -2224,15 +2224,3 @@ MODULE_PARM_DESC(features,
22242224
", bit 2: hardware SPP mode"
22252225
", bit 3: hardware EPP mode"
22262226
", bit 4: hardware ECP mode");
2227-
2228-
/*--- Inform (X)Emacs about preferred coding style ---------------------*/
2229-
/*
2230-
* Local Variables:
2231-
* mode: c
2232-
* c-file-style: "linux"
2233-
* indent-tabs-mode: t
2234-
* tab-width: 8
2235-
* fill-column: 78
2236-
* ispell-local-dictionary: "american"
2237-
* End:
2238-
*/

drivers/platform/x86/dell/dell_rbu.c

-3
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,3 @@ static __exit void dcdrbu_exit(void)
675675

676676
module_exit(dcdrbu_exit);
677677
module_init(dcdrbu_init);
678-
679-
/* vim:noet:ts=8:sw=8
680-
*/

drivers/scsi/53c700.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8 -*- */
32

43
/* NCR (or Symbios) 53c700 and 53c700-66 Driver
54
*

drivers/scsi/53c700.h

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/* SPDX-License-Identifier: GPL-2.0 */
2-
/* -*- mode: c; c-basic-offset: 8 -*- */
32

43
/* Driver for 53c700 and 53c700-66 chips from NCR and Symbios
54
*

drivers/scsi/ch.c

-6
Original file line numberDiff line numberDiff line change
@@ -1058,9 +1058,3 @@ static void __exit exit_ch_module(void)
10581058

10591059
module_init(init_ch_module);
10601060
module_exit(exit_ch_module);
1061-
1062-
/*
1063-
* Local variables:
1064-
* c-basic-offset: 8
1065-
* End:
1066-
*/

drivers/scsi/ips.c

-20
Original file line numberDiff line numberDiff line change
@@ -7099,23 +7099,3 @@ ips_init_phase2(int index)
70997099
MODULE_LICENSE("GPL");
71007100
MODULE_DESCRIPTION("IBM ServeRAID Adapter Driver " IPS_VER_STRING);
71017101
MODULE_VERSION(IPS_VER_STRING);
7102-
7103-
7104-
/*
7105-
* Overrides for Emacs so that we almost follow Linus's tabbing style.
7106-
* Emacs will notice this stuff at the end of the file and automatically
7107-
* adjust the settings for this buffer only. This must remain at the end
7108-
* of the file.
7109-
* ---------------------------------------------------------------------------
7110-
* Local variables:
7111-
* c-indent-level: 2
7112-
* c-brace-imaginary-offset: 0
7113-
* c-brace-offset: -2
7114-
* c-argdecl-indent: 2
7115-
* c-label-offset: -2
7116-
* c-continued-statement-offset: 2
7117-
* c-continued-brace-offset: 0
7118-
* indent-tabs-mode: nil
7119-
* tab-width: 8
7120-
* End:
7121-
*/

drivers/scsi/ips.h

-20
Original file line numberDiff line numberDiff line change
@@ -1211,23 +1211,3 @@ typedef struct {
12111211
IPS_COMPAT_TAMPA, \
12121212
IPS_COMPAT_KEYWEST \
12131213
}
1214-
1215-
1216-
/*
1217-
* Overrides for Emacs so that we almost follow Linus's tabbing style.
1218-
* Emacs will notice this stuff at the end of the file and automatically
1219-
* adjust the settings for this buffer only. This must remain at the end
1220-
* of the file.
1221-
* ---------------------------------------------------------------------------
1222-
* Local variables:
1223-
* c-indent-level: 2
1224-
* c-brace-imaginary-offset: 0
1225-
* c-brace-offset: -2
1226-
* c-argdecl-indent: 2
1227-
* c-label-offset: -2
1228-
* c-continued-statement-offset: 2
1229-
* c-continued-brace-offset: 0
1230-
* indent-tabs-mode: nil
1231-
* tab-width: 8
1232-
* End:
1233-
*/

drivers/scsi/lasi700.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8 -*- */
32

43
/* PARISC LASI driver for the 53c700 chip
54
*

drivers/scsi/megaraid/mbox_defs.h

-2
Original file line numberDiff line numberDiff line change
@@ -781,5 +781,3 @@ typedef struct {
781781
} __attribute__ ((packed)) mbox_sgl32;
782782

783783
#endif // _MRAID_MBOX_DEFS_H_
784-
785-
/* vim: set ts=8 sw=8 tw=78: */

drivers/scsi/megaraid/mega_common.h

-2
Original file line numberDiff line numberDiff line change
@@ -282,5 +282,3 @@ struct mraid_pci_blk {
282282
};
283283

284284
#endif // _MEGA_COMMON_H_
285-
286-
// vim: set ts=8 sw=8 tw=78:

drivers/scsi/megaraid/megaraid_mbox.c

-2
Original file line numberDiff line numberDiff line change
@@ -4068,5 +4068,3 @@ megaraid_sysfs_show_ldnum(struct device *dev, struct device_attribute *attr, cha
40684068
*/
40694069
module_init(megaraid_init);
40704070
module_exit(megaraid_exit);
4071-
4072-
/* vim: set ts=8 sw=8 tw=78 ai si: */

drivers/scsi/megaraid/megaraid_mbox.h

-2
Original file line numberDiff line numberDiff line change
@@ -230,5 +230,3 @@ typedef struct {
230230
#define WROUTDOOR(rdev, value) writel(value, (rdev)->baseaddr + 0x2C)
231231

232232
#endif // _MEGARAID_H_
233-
234-
// vim: set ts=8 sw=8 tw=78:

drivers/scsi/qla1280.c

-12
Original file line numberDiff line numberDiff line change
@@ -4403,15 +4403,3 @@ MODULE_FIRMWARE("qlogic/1040.bin");
44034403
MODULE_FIRMWARE("qlogic/1280.bin");
44044404
MODULE_FIRMWARE("qlogic/12160.bin");
44054405
MODULE_VERSION(QLA1280_VERSION);
4406-
4407-
/*
4408-
* Overrides for Emacs so that we almost follow Linus's tabbing style.
4409-
* Emacs will notice this stuff at the end of the file and automatically
4410-
* adjust the settings for this buffer only. This must remain at the end
4411-
* of the file.
4412-
* ---------------------------------------------------------------------------
4413-
* Local variables:
4414-
* c-basic-offset: 8
4415-
* tab-width: 8
4416-
* End:
4417-
*/

drivers/scsi/sni_53c710.c

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8 -*- */
32

43
/* SNI RM driver
54
*

drivers/video/fbdev/matrox/matroxfb_base.c

-9
Original file line numberDiff line numberDiff line change
@@ -2608,12 +2608,3 @@ EXPORT_SYMBOL(matroxfb_register_driver);
26082608
EXPORT_SYMBOL(matroxfb_unregister_driver);
26092609
EXPORT_SYMBOL(matroxfb_wait_for_sync);
26102610
EXPORT_SYMBOL(matroxfb_enable_irq);
2611-
2612-
/*
2613-
* Overrides for Emacs so that we follow Linus's tabbing style.
2614-
* ---------------------------------------------------------------------------
2615-
* Local variables:
2616-
* c-basic-offset: 8
2617-
* End:
2618-
*/
2619-

drivers/video/fbdev/vga16fb.c

-10
Original file line numberDiff line numberDiff line change
@@ -1451,13 +1451,3 @@ MODULE_DESCRIPTION("Legacy VGA framebuffer device driver");
14511451
MODULE_LICENSE("GPL");
14521452
module_init(vga16fb_init);
14531453
module_exit(vga16fb_exit);
1454-
1455-
1456-
/*
1457-
* Overrides for Emacs so that we follow Linus's tabbing style.
1458-
* ---------------------------------------------------------------------------
1459-
* Local variables:
1460-
* c-basic-offset: 8
1461-
* End:
1462-
*/
1463-

fs/configfs/configfs_internal.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/* SPDX-License-Identifier: GPL-2.0-or-later */
2-
/* -*- mode: c; c-basic-offset:8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* configfs_internal.h - Internal stuff for configfs
64
*
75
* Based on sysfs:

fs/configfs/dir.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* dir.c - Operations for configfs directories.
64
*
75
* Based on sysfs:

fs/configfs/file.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* file.c - operations for regular (text) files.
64
*
75
* Based on sysfs:

fs/configfs/inode.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* inode.c - basic inode and dentry operations.
64
*
75
* Based on sysfs:

fs/configfs/item.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* item.c - library routines for handling generic config items
64
*
75
* Based on kobject:

fs/configfs/mount.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* mount.c - operations for initializing and mounting configfs.
64
*
75
* Based on sysfs:

fs/configfs/symlink.c

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0-or-later
2-
/* -*- mode: c; c-basic-offset: 8; -*-
3-
* vim: noexpandtab sw=8 ts=8 sts=0:
4-
*
2+
/*
53
* symlink.c - operations for configfs symlinks.
64
*
75
* Based on sysfs:

fs/nfs/dir.c

-7
Original file line numberDiff line numberDiff line change
@@ -3004,10 +3004,3 @@ int nfs_permission(struct user_namespace *mnt_userns,
30043004
goto out;
30053005
}
30063006
EXPORT_SYMBOL_GPL(nfs_permission);
3007-
3008-
/*
3009-
* Local variables:
3010-
* version-control: t
3011-
* kept-new-versions: 5
3012-
* End:
3013-
*/

fs/nfs/nfs4proc.c

-6
Original file line numberDiff line numberDiff line change
@@ -10427,9 +10427,3 @@ const struct xattr_handler *nfs4_xattr_handlers[] = {
1042710427
#endif
1042810428
NULL
1042910429
};
10430-
10431-
/*
10432-
* Local variables:
10433-
* c-basic-offset: 8
10434-
* End:
10435-
*/

0 commit comments

Comments
 (0)