[go: up one dir, main page]

File: sisfb.c

package info (click to toggle)
trinity 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,252 kB
  • ctags: 2,738
  • sloc: ansic: 24,011; sh: 322; makefile: 141
file content (36 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <linux/ioctl.h>
#include <video/sisfb.h>

#include "ioctls.h"
#include "utils.h"

static const struct ioctl sisfb_ioctls[] = {
	IOCTL(SISFB_GET_INFO_SIZE),
	IOCTL(SISFB_GET_INFO),
	IOCTL(SISFB_GET_VBRSTATUS),
	IOCTL(SISFB_GET_AUTOMAXIMIZE),
	IOCTL(SISFB_SET_AUTOMAXIMIZE),
	IOCTL(SISFB_GET_TVPOSOFFSET),
	IOCTL(SISFB_SET_TVPOSOFFSET),
	IOCTL(SISFB_COMMAND),
	IOCTL(SISFB_SET_LOCK),
	IOCTL(SISFB_GET_INFO_OLD),
	IOCTL(SISFB_GET_VBRSTATUS_OLD),
	IOCTL(SISFB_GET_AUTOMAXIMIZE_OLD),
	IOCTL(SISFB_SET_AUTOMAXIMIZE_OLD),
};

static const char *const sisfb_devs[] = {
	"sisfb",
};

static const struct ioctl_group sisfb_grp = {
	.devtype = DEV_CHAR,
	.devs = sisfb_devs,
	.devs_cnt = ARRAY_SIZE(sisfb_devs),
	.sanitise = pick_random_ioctl,
	.ioctls = sisfb_ioctls,
	.ioctls_cnt = ARRAY_SIZE(sisfb_ioctls),
};

REG_IOCTL_GROUP(sisfb_grp)