summaryrefslogtreecommitdiffstats
path: root/sys/dev/pci/drm/include/linux/errno.h
blob: 99c6d662fcf979947528e62a24cc4f5d3613891b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Public domain. */

#ifndef _LINUX_ERRNO_H
#define _LINUX_ERRNO_H

#include <sys/errno.h>

#define ERESTARTSYS	EINTR
#define ETIME		ETIMEDOUT
#define EREMOTEIO	EIO
#define ENOTSUPP	ENOTSUP
#define ENODATA		ENOTSUP
#define ECHRNG		EINVAL

#endif