Skip to content

Commit

Permalink
Merge pull request #1200 from wuyuehang/add_fbunsupported_ioctl
Browse files Browse the repository at this point in the history
bcm2709_fb: refine appropriate behaviors to unsupported fb ioctls
  • Loading branch information
pelwell committed Nov 17, 2015
2 parents dd2ca6e + e91b72d commit f2e0b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/fbdev/bcm2708_fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ static int bcm2708_ioctl(struct fb_info *info, unsigned int cmd, unsigned long a
&dummy, sizeof(dummy));
break;
default:
dev_err(info->device, "Unknown ioctl 0x%x\n", cmd);
return -EINVAL;
dev_dbg(info->device, "Unknown ioctl 0x%x\n", cmd);
return -ENOTTY;
}

if (ret)
Expand Down

0 comments on commit f2e0b81

Please sign in to comment.