summaryrefslogtreecommitdiff
path: root/xf86drm.c
diff options
context:
space:
mode:
Diffstat (limited to 'xf86drm.c')
-rw-r--r--xf86drm.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/xf86drm.c b/xf86drm.c
index 76fdfaab..cca126b9 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -849,7 +849,7 @@ wait_for_udev:
}
#endif
- fd = open(buf, O_RDWR | O_CLOEXEC, 0);
+ fd = open(buf, O_RDWR | O_CLOEXEC);
drmMsg("drmOpenDevice: open result is %d, (%s)\n",
fd, fd < 0 ? strerror(errno) : "OK");
if (fd >= 0)
@@ -869,7 +869,7 @@ wait_for_udev:
chmod(buf, devmode);
}
}
- fd = open(buf, O_RDWR | O_CLOEXEC, 0);
+ fd = open(buf, O_RDWR | O_CLOEXEC);
drmMsg("drmOpenDevice: open result is %d, (%s)\n",
fd, fd < 0 ? strerror(errno) : "OK");
if (fd >= 0)
@@ -907,7 +907,7 @@ static int drmOpenMinor(int minor, int create, int type)
return -EINVAL;
sprintf(buf, dev_name, DRM_DIR_NAME, minor);
- if ((fd = open(buf, O_RDWR | O_CLOEXEC, 0)) >= 0)
+ if ((fd = open(buf, O_RDWR | O_CLOEXEC)) >= 0)
return fd;
return -errno;
}
@@ -1135,7 +1135,7 @@ static int drmOpenByName(const char *name, int type)
int retcode;
sprintf(proc_name, "/proc/dri/%d/name", i);
- if ((fd = open(proc_name, O_RDONLY, 0)) >= 0) {
+ if ((fd = open(proc_name, O_RDONLY)) >= 0) {
retcode = read(fd, buf, sizeof(buf)-1);
close(fd);
if (retcode) {
@@ -3892,7 +3892,7 @@ static int drmParsePciDeviceInfo(int maj, int min,
if (get_sysctl_pci_bus_info(maj, min, &info) != 0)
return -EINVAL;
- fd = open("/dev/pci", O_RDONLY, 0);
+ fd = open("/dev/pci", O_RDONLY);
if (fd < 0)
return -errno;