diff options
author | 2019-04-14 10:14:50 +0000 | |
---|---|---|
committer | 2019-04-14 10:14:50 +0000 | |
commit | 7f4dd37977dc50fdbac8c09deb3ed9ed9b8d0c87 (patch) | |
tree | 6c75a844a113c0987bd29861e921b2d54ba0752c /sys/dev/pci/drm/include/linux/errno.h | |
parent | Add lock order checking for timeouts (diff) | |
download | wireguard-openbsd-7f4dd37977dc50fdbac8c09deb3ed9ed9b8d0c87.tar.xz wireguard-openbsd-7f4dd37977dc50fdbac8c09deb3ed9ed9b8d0c87.zip |
Update shared drm code, inteldrm(4) and radeondrm(4) from linux 4.4 to
linux 4.19.34.
Adds support for more Intel hardware:
Broxton/Apollo Lake (was is_preliminary in 4.4)
Amber Lake (another Kaby Lake refresh)
Gemini Lake
Coffee Lake
Whiskey Lake
Cannon Lake (though no hardware with Intel graphics ever shipped)
Ice Lake (alpha support, hardware not released)
This does not add support for new radeon hardware on the AMD side as
newer radeons have a different kernel driver (amdgpu).
Thanks to the OpenBSD Foundation for sponsoring this work, kettenis@ for
helping and a bunch of other developers for testing.
Diffstat (limited to 'sys/dev/pci/drm/include/linux/errno.h')
-rw-r--r-- | sys/dev/pci/drm/include/linux/errno.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/dev/pci/drm/include/linux/errno.h b/sys/dev/pci/drm/include/linux/errno.h new file mode 100644 index 00000000000..99c6d662fcf --- /dev/null +++ b/sys/dev/pci/drm/include/linux/errno.h @@ -0,0 +1,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 |