From df236b7f42243b1260ea2799e75c610af26d81b2 Mon Sep 17 00:00:00 2001 From: Tianshi Liu Date: Thu, 21 Apr 2022 09:45:12 +0800 Subject: [PATCH] add userauth device type Change-Id: Ie1a9ea1f0c226b0e501429b64ab65076d37e7c93 Signed-off-by: Tianshi Liu --- include/core/hdf_io_service_if.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/include/core/hdf_io_service_if.h b/include/core/hdf_io_service_if.h index 220eba78..56eeae8b 100644 --- a/include/core/hdf_io_service_if.h +++ b/include/core/hdf_io_service_if.h @@ -47,15 +47,16 @@ struct HdfIoService; * @since 1.0 */ typedef enum { - DEVICE_CLASS_DEFAULT = 0x1 << 0, /** Default device */ - DEVICE_CLASS_PLAT = 0x1 << 1, /** Platform device */ - DEVICE_CLASS_SENSOR = 0x1 << 2, /** Sensor device */ - DEVICE_CLASS_INPUT = 0x1 << 3, /** Input device */ - DEVICE_CLASS_DISPLAY = 0x1 << 4, /** Display device */ - DEVICE_CLASS_AUDIO = 0x1 << 5, /** Audio device */ - DEVICE_CLASS_CAMERA = 0x1 << 6, /** Camera device */ - DEVICE_CLASS_USB = 0x1 << 7, /** USB device */ - DEVICE_CLASS_MAX = 0x1 << 8, /** Maximum value of a device class */ + DEVICE_CLASS_DEFAULT = 0x1 << 0, /** Default device */ + DEVICE_CLASS_PLAT = 0x1 << 1, /** Platform device */ + DEVICE_CLASS_SENSOR = 0x1 << 2, /** Sensor device */ + DEVICE_CLASS_INPUT = 0x1 << 3, /** Input device */ + DEVICE_CLASS_DISPLAY = 0x1 << 4, /** Display device */ + DEVICE_CLASS_AUDIO = 0x1 << 5, /** Audio device */ + DEVICE_CLASS_CAMERA = 0x1 << 6, /** Camera device */ + DEVICE_CLASS_USB = 0x1 << 7, /** USB device */ + DEVICE_CLASS_USERAUTH = 0x1 << 8, /** UserAuth device */ + DEVICE_CLASS_MAX = 0x1 << 9, /** Maximum value of a device class */ } DeviceClass; /**