Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1469307
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] fb: udl: fix build without CONFIG_FB_DEFERRED_IO |
| Date | 2016-08-24 12:20 +0200 |
| Message-ID | <s9DrQ-QH-3@gated-at.bofh.it> (permalink) |
| References | <s9BJo-85b-11@gated-at.bofh.it> <s9Cm6-8m-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wednesday, August 24, 2016 11:01:17 AM CEST Daniel Vetter wrote:
> On Wed, Aug 24, 2016 at 10:27 AM, Arnd Bergmann <arnd@arndb.de> wrote:
> > A cleanup in v4.8 dropped several dependencies, but caused the udl driver
> > to fail building when CONFIG_FB_DEFERRED_IO is not set:
> >
> > drivers/gpu/drm/udl/udl_fb.c: In function 'udl_fb_open':
> > drivers/gpu/drm/udl/udl_fb.c:206:23: error: 'struct fb_info' has no member named 'fbdefio'
> > if (fb_defio && (info->fbdefio == NULL)) {
> > ^~
> >
> > This adds an #ifdef check around the code that fails. We know this
> > is safe because it always checks info->fbdefio for being non-NULL,
> > and that member is not defined here.
> >
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > Fixes: c0f0c177b5a9 ("drm/udl: make fbdev support really optional")
>
> There's a pile more needed, which is why I just ended up stuffing them
> all into linux-next for 4.9. Is your patch still needed on that? If we
> really want this fixed in 4.8 I guess I can assemble a cherry-pick
> list.
Ok, got it. I think your 0c756134cf76 ("drm: Protect fb_defio in
drivers with CONFIG_KMS_FBDEV_EMULATION") is actually sufficient
for the build break, it's almost the same as my patch anyway.
Alternatively, reverting c0f0c177b5a9 ("drm/udl: make fbdev
support really optional") for v4.8 would work too.
Arnd
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] fb: udl: fix build without CONFIG_FB_DEFERRED_IO Arnd Bergmann <arnd@arndb.de> - 2016-08-24 10:30 +0200
Re: [PATCH] fb: udl: fix build without CONFIG_FB_DEFERRED_IO Daniel Vetter <daniel.vetter@ffwll.ch> - 2016-08-24 11:10 +0200
Re: [PATCH] fb: udl: fix build without CONFIG_FB_DEFERRED_IO Arnd Bergmann <arnd@arndb.de> - 2016-08-24 12:20 +0200
Re: [PATCH] fb: udl: fix build without CONFIG_FB_DEFERRED_IO Daniel Vetter <daniel.vetter@ffwll.ch> - 2016-08-24 12:30 +0200
csiph-web