On Sat, 18 Oct 2014 23:46:45 +0200 Paul Kocialkowski <[email protected]> wrote:
> From: Paul Sokolovsky <[email protected]> > > 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 <[email protected]> > Signed-off-by: Dave Airlie <[email protected]> > --- > 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? -- Best regards, Siarhei Siamashka -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
