> > From: Paul Sokolovsky <paul.sokolov...@linaro.org>
> > 
> > An ifdef in drm.h expects to be compiled with full-fledged Linux
> > toolchain, but it's common to compile kernel with just bare-metal
> > toolchain which doesn't define __linux__. So, also add __KERNEL__
> > check.
> > 
> > Signed-off-by: Paul Sokolovsky <paul.sokolov...@linaro.org>
> > Signed-off-by: Dave Airlie <airl...@redhat.com>
> > ---
> >  include/drm/drm.h |    2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/include/drm/drm.h b/include/drm/drm.h
> > index 64ff02d..9a30c72 100644
> > --- a/include/drm/drm.h
> > +++ b/include/drm/drm.h
> > @@ -36,7 +36,7 @@
> >  #ifndef _DRM_H_
> >  #define _DRM_H_
> >  
> > -#if defined(__linux__)
> > +#if defined(__KERNEL__) || defined(__linux__)
> >  
> >  #include <linux/types.h>
> >  #include <asm/ioctl.h>
> 
> Looks good.
> 
> Just one question. Do you happen to know if this patch was nominated
> for the mainline stable 3.4.x branch?

Apparently, it was not, since this is still not included. Given that the
patch was originally issued in 2011, I think it's safe to include in the
linux-sunxi tree.

-- 
Paul Kocialkowski, Replicant developer

Replicant is a fully free Android distribution running on several
devices, a free software mobile operating system putting the emphasis on
freedom and privacy/security.

Website: http://www.replicant.us/
Blog: http://blog.replicant.us/
Wiki/tracker/forums: http://redmine.replicant.us/

-- 
You received this message because you are subscribed to the Google Groups 
"linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to linux-sunxi+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to