[PATCH] streamline_config.pl: remove superfluous exclamation mark

Diego Viola posted 1 patch 4 days, 21 hours ago
scripts/kconfig/streamline_config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] streamline_config.pl: remove superfluous exclamation mark
Posted by Diego Viola 4 days, 21 hours ago
In order to make the output cleaner and more consistent with other
scripts.

Signed-off-by: Diego Viola <diego.viola@gmail.com>
---
 scripts/kconfig/streamline_config.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 8e23faab5d22..8677d1ca06a7 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -415,7 +415,7 @@ foreach my $module (keys(%modules)) {
 	}
     } else {
 	# Most likely, someone has a custom (binary?) module loaded.
-	print STDERR "$module config not found!!\n";
+	print STDERR "$module config not found!\n";
     }
 }
 
-- 
2.52.0
Re: [PATCH] streamline_config.pl: remove superfluous exclamation mark
Posted by Nathan Chancellor 3 days, 22 hours ago
On Mon, 02 Feb 2026 02:45:41 -0300, Diego Viola wrote:
> In order to make the output cleaner and more consistent with other
> scripts.
> 
> 

Applied to

  https://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux.git kbuild-next

Thanks!

[1/1] streamline_config.pl: remove superfluous exclamation mark
      https://git.kernel.org/kbuild/c/72043cf7f100c

Please look out for regression or issue reports or other follow up
comments, as they may result in the patch/series getting dropped or
reverted. Patches applied to an "unstable" branch are accepted pending
wider testing in -next and any post-commit review; they will generally
be moved to the main branch in a week if no issues are found.

Best regards,
-- 
Nathan Chancellor <nathan@kernel.org>
Re: [PATCH] streamline_config.pl: remove superfluous exclamation mark
Posted by Diego Viola 3 days, 20 hours ago
On Tue, Feb 3, 2026 at 1:55 AM Nathan Chancellor <nathan@kernel.org> wrote:
>
> On Mon, 02 Feb 2026 02:45:41 -0300, Diego Viola wrote:
> > In order to make the output cleaner and more consistent with other
> > scripts.
> >
> >
>
> Applied to
>
>   https://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux.git kbuild-next
>
> Thanks!
>
> [1/1] streamline_config.pl: remove superfluous exclamation mark
>       https://git.kernel.org/kbuild/c/72043cf7f100c
>
> Please look out for regression or issue reports or other follow up
> comments, as they may result in the patch/series getting dropped or
> reverted. Patches applied to an "unstable" branch are accepted pending
> wider testing in -next and any post-commit review; they will generally
> be moved to the main branch in a week if no issues are found.
>
> Best regards,
> --
> Nathan Chancellor <nathan@kernel.org>
>

Thank you!