only define ca_pid_t for user space

This commit is contained in:
Ralph Metzler 2018-01-16 23:52:17 +01:00
parent a6b6e3be29
commit 94dfd16461
1 changed files with 2 additions and 1 deletions

View File

@ -134,7 +134,7 @@ struct ca_descr {
typedef struct ca_pid {
unsigned int pid;
int index;/* -1 == disable*/
} ca_pid_t;
};
#define CA_RESET _IO('o', 128)
#define CA_GET_CAP _IOR('o', 129, struct ca_caps)
@ -153,6 +153,7 @@ typedef struct ca_descr_info ca_descr_info_t;
typedef struct ca_caps ca_caps_t;
typedef struct ca_msg ca_msg_t;
typedef struct ca_descr ca_descr_t;
typedef struct ca_pid ca_pid_t;
#endif