Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.8 15 lines 353 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (C) 2012 Russell King 4 */ 5#ifndef ARMADA_IOCTLP_H 6#define ARMADA_IOCTLP_H 7 8#define ARMADA_IOCTL_PROTO(name)\ 9extern int armada_##name##_ioctl(struct drm_device *, void *, struct drm_file *) 10 11ARMADA_IOCTL_PROTO(gem_create); 12ARMADA_IOCTL_PROTO(gem_mmap); 13ARMADA_IOCTL_PROTO(gem_pwrite); 14 15#endif