1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2021, NVIDIA Corporation.
6 #include <linux/device.h>
9 const struct bus_type host1x_context_device_bus_type
= {
10 .name
= "host1x-context",
12 EXPORT_SYMBOL_GPL(host1x_context_device_bus_type
);
14 static int __init
host1x_context_device_bus_init(void)
18 err
= bus_register(&host1x_context_device_bus_type
);
20 pr_err("bus type registration failed: %d\n", err
);
26 postcore_initcall(host1x_context_device_bus_init
);