net: qrtr: Move constants to header file
The constants are used by both the name server and clients, so clarify their value and move them to the uapi header. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ae85bfa878
commit
28978713c5
|
@ -4,6 +4,9 @@
|
|||
#include <linux/socket.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#define QRTR_NODE_BCAST 0xffffffffu
|
||||
#define QRTR_PORT_CTRL 0xfffffffeu
|
||||
|
||||
struct sockaddr_qrtr {
|
||||
__kernel_sa_family_t sq_family;
|
||||
__u32 sq_node;
|
||||
|
|
|
@ -61,8 +61,6 @@ struct qrtr_hdr {
|
|||
} __packed;
|
||||
|
||||
#define QRTR_HDR_SIZE sizeof(struct qrtr_hdr)
|
||||
#define QRTR_NODE_BCAST ((unsigned int)-1)
|
||||
#define QRTR_PORT_CTRL ((unsigned int)-2)
|
||||
|
||||
struct qrtr_sock {
|
||||
/* WARNING: sk must be the first member */
|
||||
|
|
Loading…
Reference in New Issue