diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 16:10:43 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-07 16:10:43 -0500 |
commit | c3611b6d7fd7944bebf0ae45cdb4d47288e394b4 (patch) | |
tree | f1aeb9033b774cac6e3d44a4fb1969cf33ffcdfd /include/video | |
parent | cc006a2241122768be62cdcc09d3fd2540308d48 (diff) | |
parent | 5865889fe4319415e439095391dda52f23030d60 (diff) |
Merge tag 'fbdev-v4.16' of git://github.com/bzolnier/linux
Pull fbdev updates from Bartlomiej Zolnierkiewicz:
"There is nothing really major here:
- fix display-timings lookup in the Device Tree in atmel_lcdfb driver
(Johan Hovold)
- fix video mode and line_length to be set correctly in vfb driver
(Pieter "PoroCYon" Sluys)
- fix returning nonsensical values to the user-space on GIO_FONTX
ioctl when using dummy console (Nicolas Pitre)
- add missing license tag to mmpfb driver (Arnd Bergmann)
- convert radeonfb and pxa3xx_gcu drivers to use ktime_get[_ts64]()
instead of the deprecated do_gettimeofday() (Arnd Bergmann)
- switch udlfb driver from using the pr_*() logging functions to the
dev_*() ones + related cleanups (Ladislav Michl)
- use __raw I/O accessors also on arm64 (Ji Zhang)
- fix Kconfig help text for intelfb driver (Randy Dunlap)
- do not duplicate features data in omapfb driver (Ladislav Michl)
- misc cleanups (Colin Ian King, Markus Elfring, Rasmus Villemoes,
Vasyl Gomonovych, Himanshu Jha, Michael Trimarchi)"
* tag 'fbdev-v4.16' of git://github.com/bzolnier/linux: (25 commits)
video: udlfb: Switch from the pr_*() to the dev_*() logging functions
video: udlfb: Constify read only data
video: fbdev/mmp: add MODULE_LICENSE
console/dummy: leave .con_font_get set to NULL
fbdev: mxsfb: use framebuffer_alloc in the correct way
video: udlfb: Do not name private data 'dev'
video: udlfb: Remove noisy warnings
video: udlfb: Remove redundant gdev variable
video: udlfb: Remove unnecessary local variable
fbdev: auo_k190x: Use zeroing memory allocator instead of allocator/memset
vfb: fix video mode and line_length being set when loaded
fbdev: arm64 use __raw I/O memory api
omapfb: dss: Do not duplicate features data
video: fbdev: omap2: Use PTR_ERR_OR_ZERO()
fbdev: au1200fb: delete duplicate header contents
fbdev: pxa3xx: use ktime_get_ts64 for time stamps
fbdev: radeon: use ktime_get() for HZ calibration
video: smscufx: Improve a size determination in two functions
video: udlfb: Delete an unnecessary return statement in two functions
video: udlfb: Improve a size determination in dlfb_alloc_urb_list()
...
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/udlfb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/video/udlfb.h b/include/video/udlfb.h index 1252a7a89bc0..0cabe6b09095 100644 --- a/include/video/udlfb.h +++ b/include/video/udlfb.h | |||
@@ -19,7 +19,7 @@ struct dloarea { | |||
19 | 19 | ||
20 | struct urb_node { | 20 | struct urb_node { |
21 | struct list_head entry; | 21 | struct list_head entry; |
22 | struct dlfb_data *dev; | 22 | struct dlfb_data *dlfb; |
23 | struct delayed_work release_urb_work; | 23 | struct delayed_work release_urb_work; |
24 | struct urb *urb; | 24 | struct urb *urb; |
25 | }; | 25 | }; |
@@ -35,7 +35,6 @@ struct urb_list { | |||
35 | 35 | ||
36 | struct dlfb_data { | 36 | struct dlfb_data { |
37 | struct usb_device *udev; | 37 | struct usb_device *udev; |
38 | struct device *gdev; /* &udev->dev */ | ||
39 | struct fb_info *info; | 38 | struct fb_info *info; |
40 | struct urb_list urbs; | 39 | struct urb_list urbs; |
41 | struct kref kref; | 40 | struct kref kref; |