diff options
Diffstat (limited to 'drivers/char/drm/drm_ioctl.c')
-rw-r--r-- | drivers/char/drm/drm_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm_ioctl.c b/drivers/char/drm/drm_ioctl.c index b195e102e737..4eecfb9226d4 100644 --- a/drivers/char/drm/drm_ioctl.c +++ b/drivers/char/drm/drm_ioctl.c | |||
@@ -123,7 +123,7 @@ int drm_setunique(struct inode *inode, struct file *filp, | |||
123 | */ | 123 | */ |
124 | ret = sscanf(dev->unique, "PCI:%d:%d:%d", &bus, &slot, &func); | 124 | ret = sscanf(dev->unique, "PCI:%d:%d:%d", &bus, &slot, &func); |
125 | if (ret != 3) | 125 | if (ret != 3) |
126 | return DRM_ERR(EINVAL); | 126 | return -EINVAL; |
127 | domain = bus >> 8; | 127 | domain = bus >> 8; |
128 | bus &= 0xff; | 128 | bus &= 0xff; |
129 | 129 | ||