From 3574f0514207f9610a69d82d3dd0d018d6dce5dd Mon Sep 17 00:00:00 2001 From: Steven Davis Date: Tue, 2 Jul 2024 22:57:24 -0400 Subject: [PATCH 1/3] Removed extra asterisk from comment beginning It saves a byte. I'd imagine bytes are valuable in a project like this. --- kernel/module/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/module/main.c b/kernel/module/main.c index d18a94b973e102..25e456f4381c71 100644 --- a/kernel/module/main.c +++ b/kernel/module/main.c @@ -450,7 +450,7 @@ bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr) return false; } -/** +/* * is_module_percpu_address() - test whether address is from module static percpu * @addr: address to test * From 33dc0aa3973913f310840cc8f7d5d599d573c297 Mon Sep 17 00:00:00 2001 From: Steven Davis Date: Tue, 2 Jul 2024 23:43:15 -0400 Subject: [PATCH 2/3] Removed unnecessary comment end It still works the same without that comment end, so why is it in there? --- include/memory/renesas-rpc-if.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/memory/renesas-rpc-if.h b/include/memory/renesas-rpc-if.h index b8fa30fd6b500c..591dd86f55f879 100644 --- a/include/memory/renesas-rpc-if.h +++ b/include/memory/renesas-rpc-if.h @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0 /* * Renesas RPC-IF core driver * From 072a5624cf67614a7f64d6ba15773f85ee5a2e1d Mon Sep 17 00:00:00 2001 From: Steven Davis Date: Wed, 3 Jul 2024 16:00:15 -0400 Subject: [PATCH 3/3] Removed, like, 30,000 more useless asterisks Is there a reason for those extra asterisks to be in there? Seems unnecessary. --- sound/sound_core.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sound/sound_core.c b/sound/sound_core.c index d81fed1c122699..6d446c5bb94a0f 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c @@ -331,7 +331,7 @@ static void sound_remove_unit(struct sound_unit **list, int unit) static struct sound_unit *chains[SOUND_STEP]; -/** +/* * register_sound_special_device - register a special sound node * @fops: File operations for the driver * @unit: Unit number to allocate @@ -418,7 +418,7 @@ int register_sound_special(const struct file_operations *fops, int unit) EXPORT_SYMBOL(register_sound_special); -/** +/* * register_sound_mixer - register a mixer device * @fops: File operations for the driver * @dev: Unit number to allocate @@ -443,7 +443,7 @@ EXPORT_SYMBOL(register_sound_mixer); * in open - see below. */ -/** +/* * register_sound_dsp - register a DSP device * @fops: File operations for the driver * @dev: Unit number to allocate @@ -466,7 +466,7 @@ int register_sound_dsp(const struct file_operations *fops, int dev) EXPORT_SYMBOL(register_sound_dsp); -/** +/* * unregister_sound_special - unregister a special sound device * @unit: unit number to allocate * @@ -483,7 +483,7 @@ void unregister_sound_special(int unit) EXPORT_SYMBOL(unregister_sound_special); -/** +/* * unregister_sound_mixer - unregister a mixer * @unit: unit number to allocate * @@ -498,7 +498,7 @@ void unregister_sound_mixer(int unit) EXPORT_SYMBOL(unregister_sound_mixer); -/** +/* * unregister_sound_dsp - unregister a DSP device * @unit: unit number to allocate *