From c1fa65eec7668dcc23f16bd737d0f3eae601a207 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 20 Apr 2023 15:30:43 +0300 Subject: [PATCH] smbus: Change init priority from DEVICE to DEFAULT Change init priority for SMBus from KERNEL_INIT_PRIORITY_DEVICE (50) to KERNEL_INIT_PRIORITY_DEFAULT (40) since other devices which depend on SMBus (like EEPROM) have the same priority. Signed-off-by: Andrei Emeltchenko --- drivers/smbus/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/smbus/Kconfig b/drivers/smbus/Kconfig index e4581fae86b..faa44a8965d 100644 --- a/drivers/smbus/Kconfig +++ b/drivers/smbus/Kconfig @@ -25,7 +25,7 @@ config SMBUS_STATS config SMBUS_INIT_PRIORITY int "Init priority" - default KERNEL_INIT_PRIORITY_DEVICE + default KERNEL_INIT_PRIORITY_DEFAULT help SMBus device driver initialization priority.