Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: rpmsg.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
/*
[1] Fix | Delete
* Copyright (c) 2016, Linaro Ltd.
[2] Fix | Delete
*/
[3] Fix | Delete
[4] Fix | Delete
#ifndef _RPMSG_H_
[5] Fix | Delete
#define _RPMSG_H_
[6] Fix | Delete
[7] Fix | Delete
#include <linux/ioctl.h>
[8] Fix | Delete
#include <linux/types.h>
[9] Fix | Delete
[10] Fix | Delete
/**
[11] Fix | Delete
* struct rpmsg_endpoint_info - endpoint info representation
[12] Fix | Delete
* @name: name of service
[13] Fix | Delete
* @src: local address
[14] Fix | Delete
* @dst: destination address
[15] Fix | Delete
*/
[16] Fix | Delete
struct rpmsg_endpoint_info {
[17] Fix | Delete
char name[32];
[18] Fix | Delete
__u32 src;
[19] Fix | Delete
__u32 dst;
[20] Fix | Delete
};
[21] Fix | Delete
[22] Fix | Delete
#define RPMSG_CREATE_EPT_IOCTL _IOW(0xb5, 0x1, struct rpmsg_endpoint_info)
[23] Fix | Delete
#define RPMSG_DESTROY_EPT_IOCTL _IO(0xb5, 0x2)
[24] Fix | Delete
[25] Fix | Delete
#endif
[26] Fix | Delete
[27] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function