Since commit d492cc2573
("driver core: device.h: make struct
bus_type a const *"), the driver core can properly handle constant
struct bus_type, move the host1x_context_device_bus_type variable
to be a constant structure as well, placing it into read-only memory
which can not be modified at runtime.
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240823080724.148423-1-kunwu.chan@linux.dev
26 lines
553 B
C
26 lines
553 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2021, NVIDIA Corporation.
|
|
*/
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/of.h>
|
|
|
|
const struct bus_type host1x_context_device_bus_type = {
|
|
.name = "host1x-context",
|
|
};
|
|
EXPORT_SYMBOL_GPL(host1x_context_device_bus_type);
|
|
|
|
static int __init host1x_context_device_bus_init(void)
|
|
{
|
|
int err;
|
|
|
|
err = bus_register(&host1x_context_device_bus_type);
|
|
if (err < 0) {
|
|
pr_err("bus type registration failed: %d\n", err);
|
|
return err;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
postcore_initcall(host1x_context_device_bus_init);
|