mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-09 06:04:05 +08:00
bdabad3e36
Add an implementation of Qualcomm's IPC router protocol, used to communicate with service providing remote processors. Signed-off-by: Courtney Cavin <courtney.cavin@sonymobile.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> [bjorn: Cope with 0 being a valid node id and implement RTM_NEWADDR] Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
191 B
C
13 lines
191 B
C
#ifndef _LINUX_QRTR_H
|
|
#define _LINUX_QRTR_H
|
|
|
|
#include <linux/socket.h>
|
|
|
|
struct sockaddr_qrtr {
|
|
__kernel_sa_family_t sq_family;
|
|
__u32 sq_node;
|
|
__u32 sq_port;
|
|
};
|
|
|
|
#endif /* _LINUX_QRTR_H */
|