VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: John Ogness <john.ogness@linutronix.de> 2020-08-12 09:37:22 +0206 committer: Petr Mladek <pmladek@suse.com> 2020-09-08 09:33:15 +0200 commit: 550c10d28d21bd82a8bb48debbb27e6ed53262f6 parent: d397820f36ffe4701343b6ee12687d60db0ed8db
Commit Summary:
printk: reduce LOG_BUF_SHIFT range for H8300
Diffstat:
1 file changed, 2 insertions, 1 deletion
diff --git a/init/Kconfig b/init/Kconfig
index a46aa8f3174d..485f7e53a8a5 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -654,7 +654,8 @@ config IKHEADERS
 
 config LOG_BUF_SHIFT
 	int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
-	range 12 25
+	range 12 25 if !H8300
+	range 12 19 if H8300
 	default 17
 	depends on PRINTK
 	help