Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Definitions for container bus type. |
| 4 | * |
| 5 | * Copyright (C) 2013, Intel Corporation |
| 6 | * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
Masahiro Yamada | 1d5a013 | 2019-08-19 16:16:06 +0900 | [diff] [blame] | 9 | #ifndef _LINUX_CONTAINER_H |
| 10 | #define _LINUX_CONTAINER_H |
| 11 | |
Rafael J. Wysocki | caa73ea | 2013-12-29 15:25:48 +0100 | [diff] [blame] | 12 | #include <linux/device.h> |
| 13 | |
| 14 | /* drivers/base/power/container.c */ |
| 15 | extern struct bus_type container_subsys; |
| 16 | |
| 17 | struct container_dev { |
| 18 | struct device dev; |
| 19 | int (*offline)(struct container_dev *cdev); |
| 20 | }; |
| 21 | |
| 22 | static inline struct container_dev *to_container_dev(struct device *dev) |
| 23 | { |
| 24 | return container_of(dev, struct container_dev, dev); |
| 25 | } |
Masahiro Yamada | 1d5a013 | 2019-08-19 16:16:06 +0900 | [diff] [blame] | 26 | |
| 27 | #endif /* _LINUX_CONTAINER_H */ |