Linus Torvalds writes: (Summary) wrote:
Martin - can we just remove the
Martin - can we just remove the
select HAVE_GCC_PLUGINS
select HAVE_GCC_PLUGINS
from the s390 Kconfig file (or perhaps add "if BROKEN" or something to disable it).
disable it).
Because if it's not getting fixed, it shouldn't be exposed. I assume it's
arch/sparc/include/asm/cacheflush_32.h
arch/sparc/include/asm/cacheflush_32.h
that wants a forward-declaration of 'struct page', and doesn't include any header files.
any header files.
The fix is presumably to move the
The fix is presumably to move the
#include <asm/cacheflush.h>
#include <asm/cacheflush.h>
in drivers/staging/media/omap4iss/iss_video.c down to below the
[...]
builds at all.Martin - can we just remove the
Martin - can we just remove the
select HAVE_GCC_PLUGINS
select HAVE_GCC_PLUGINS
from the s390 Kconfig file (or perhaps add "if BROKEN" or something to disable it).
disable it).
Because if it's not getting fixed, it shouldn't be exposed. I assume it's
arch/sparc/include/asm/cacheflush_32.h
arch/sparc/include/asm/cacheflush_32.h
that wants a forward-declaration of 'struct page', and doesn't include any header files.
any header files.
The fix is presumably to move the
The fix is presumably to move the
#include <asm/cacheflush.h>
#include <asm/cacheflush.h>
in drivers/staging/media/omap4iss/iss_video.c down to below the
<linux/*>