cregit-Linux how code gets into the kernel

Release 4.18 include/uapi/linux/rpmsg.h

/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
 * Copyright (c) 2016, Linaro Ltd.
 */

#ifndef _UAPI_RPMSG_H_

#define _UAPI_RPMSG_H_

#include <linux/ioctl.h>
#include <linux/types.h>

/**
 * struct rpmsg_endpoint_info - endpoint info representation
 * @name: name of service
 * @src: local address
 * @dst: destination address
 */

struct rpmsg_endpoint_info {
	
char name[32];
	
__u32 src;
	
__u32 dst;
};


#define RPMSG_CREATE_EPT_IOCTL	_IOW(0xb5, 0x1, struct rpmsg_endpoint_info)

#define RPMSG_DESTROY_EPT_IOCTL	_IO(0xb5, 0x2)

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Björn Andersson4095.24%133.33%
Suman Anna12.38%133.33%
Greg Kroah-Hartman12.38%133.33%
Total42100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.