L4Re - L4 Runtime Environment
vbus_pm-ops.h
1 /*
2  * (c) 2013 Alexander Warg <warg@os.inf.tu-dresden.de>
3  * economic rights: Technische Universität Dresden (Germany)
4  *
5  * This file is part of TUD:OS and distributed under the terms of the
6  * GNU General Public License 2.
7  * Please see the COPYING-GPL-2 file for details.
8  */
9 
10 #pragma once
11 
12 #include "vbus_interfaces.h"
13 
14 enum L4vbus_pm_op
15 {
16  L4VBUS_PM_OP_SUSPEND = L4VBUS_INTERFACE_PM << L4VBUS_IFACE_SHIFT,
17  L4VBUS_PM_OP_RESUME,
18 };
19 
Sub-interface ID shift.
This header contains the definition of VBUS sub-interfaces and convenience functions to work with the...