diff options
author | 2024-03-11 17:22:57 -0700 | |
---|---|---|
committer | 2024-03-11 17:22:57 -0700 | |
commit | d8941ce52b708cfd520994e65760a2fa6a646dfb (patch) | |
tree | 12a5904db21de1f5de14deeb249cf18c23ef8b0b | |
parent | Revert "dm: use queue_limits_set" (diff) | |
parent | x86/mce: Make mce_subsys const (diff) | |
download | wireguard-linux-d8941ce52b708cfd520994e65760a2fa6a646dfb.tar.xz wireguard-linux-d8941ce52b708cfd520994e65760a2fa6a646dfb.zip |
Merge tag 'ras_core_for_v6.9_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull RAS fixlet from Borislav Petkov:
- Constify yet another static struct bus_type instance now that the
driver core can handle that
* tag 'ras_core_for_v6.9_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/mce: Make mce_subsys const
-rw-r--r-- | arch/x86/kernel/cpu/mce/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mce/core.c b/arch/x86/kernel/cpu/mce/core.c index 04acdc3534c8..b5cc557cfc37 100644 --- a/arch/x86/kernel/cpu/mce/core.c +++ b/arch/x86/kernel/cpu/mce/core.c @@ -2457,7 +2457,7 @@ static void mce_enable_ce(void *all) __mcheck_cpu_init_timer(); } -static struct bus_type mce_subsys = { +static const struct bus_type mce_subsys = { .name = "machinecheck", .dev_name = "machinecheck", }; |