summaryrefslogtreecommitdiff
path: root/include/yagl_version.h
blob: 7c214b2ee46271dc66cc5117fc0f155e2b91effa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _YAGL_VERSION_H_
#define _YAGL_VERSION_H_

#include <linux/ioctl.h>

/*
 * Version number.
 */
#define YAGL_VERSION 19

/*
 * Device control codes magic.
 */
#define YAGL_IOC_MAGIC 'Y'

/*
 * Get version number.
 */
#define YAGL_IOC_GET_VERSION _IOR(YAGL_IOC_MAGIC, 0, unsigned int)

#endif