Remove and modify for some dbus policies
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / hardware / bt_gatt_types.h
index 2c1f2c4..289b543 100644 (file)
@@ -36,25 +36,22 @@ __BEGIN_DECLS
 #define BTGATT_SERVICE_TYPE_SECONDARY 1
 
 /** GATT ID adding instance id tracking to the UUID */
-typedef struct
-{
-    bt_uuid_t           uuid;
-    uint8_t             inst_id;
+typedef struct {
+       bt_uuid_t           uuid;
+       uint8_t             inst_id;
 } btgatt_gatt_id_t;
 
 /** GATT Service ID also identifies the service type (primary/secondary) */
-typedef struct
-{
-    btgatt_gatt_id_t    id;
-    uint8_t             is_primary;
+typedef struct {
+       btgatt_gatt_id_t    id;
+       uint8_t             is_primary;
 } btgatt_srvc_id_t;
 
 /** Preferred physical Transport for GATT connection */
-typedef enum
-{
-    GATT_TRANSPORT_AUTO,
-    GATT_TRANSPORT_BREDR,
-    GATT_TRANSPORT_LE
+typedef enum {
+       GATT_TRANSPORT_AUTO,
+       GATT_TRANSPORT_BREDR,
+       GATT_TRANSPORT_LE
 } btgatt_transport_t;
 
 __END_DECLS