1 // SPDX-License-Identifier: GPL-2.0
3 * System bus type for containers.
5 * Copyright (C) 2013, Intel Corporation
6 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
9 #include <linux/container.h>
13 #define CONTAINER_BUS_NAME "container"
15 static int trivial_online(struct device
*dev
)
20 static int container_offline(struct device
*dev
)
22 struct container_dev
*cdev
= to_container_dev(dev
);
24 return cdev
->offline
? cdev
->offline(cdev
) : 0;
27 struct bus_type container_subsys
= {
28 .name
= CONTAINER_BUS_NAME
,
29 .dev_name
= CONTAINER_BUS_NAME
,
30 .online
= trivial_online
,
31 .offline
= container_offline
,
34 void __init
container_dev_init(void)
38 ret
= subsys_system_register(&container_subsys
, NULL
);
40 pr_err("%s() failed: %d\n", __func__
, ret
);