All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] compat.3.7, compat.3.8: Adds missing of.h include
@ 2013-12-10 15:36 Richard Röjfors
  2014-01-17 21:31 ` Hauke Mehrtens
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Röjfors @ 2013-12-10 15:36 UTC (permalink / raw)
  To: backports

This applies to 3.13-rc2

The compat-3.7.c och compat-3.8.c uses of-functions if supported by the
kernel, but there is a missing include for linux/of.h.

This patch fixes the compile error which looks like this:

| NOTE: make -j 8 ARCH=arm KLIB_BUILD=/path/usr/src/kernel KLIB=/path/image
|   CC [M]  /path/backports-3.13-rc2-1/compat/compat-3.7.o
| /path/backports-3.13-rc2-1/compat/compat-3.7.c: In function 'of_get_child_by_name':
| /path/backports-3.13-rc2-1/compat/compat-3.7.c:274:1: error: unknown type name 'z'
| /path/backports-3.13-rc2-1/compat/compat-3.7.c:276:3: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'if'
| make[6]: *** [/path/backports-3.13-rc2-1/compat/compat-3.7.o] Error 1
| make[5]: *** [/path/backports-3.13-rc2-1/compat] Error 2
| make[4]: *** [_module_/path/backports/3.13-rc2-1-r0/backports-3.13-rc2-1] Error 2
| make[3]: *** [modules] Error 2
| make[2]: *** [modules] Error 2
| make[1]: *** [modules] Error 2
| make: *** [default] Error 2

Signed-off-by: Richard Röjfors <richard.rojfors@gmail.com>
---
--- backports-3.13-rc2-1.org/compat/compat-3.7.c	2013-12-05 12:19:56.161016836 +0100
+++ backports-3.13-rc2-1.new/compat/compat-3.7.c	2013-12-05 12:18:40.257012431 +0100
@@ -256,6 +256,8 @@
 
 #ifdef CONFIG_OF
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0))
+#include <linux/of.h>
+
 /**
  *	of_get_child_by_name - Find the child node by name for a given parent
  *	@node:	parent node
--- backports-3.13-rc2-1.org/compat/compat-3.8.c	2013-12-05 12:17:53.093009694 +0100
+++ backports-3.13-rc2-1.new/compat/compat-3.8.c	2013-12-05 12:18:42.745012576 +0100
@@ -420,6 +420,8 @@
 EXPORT_SYMBOL_GPL(vm_iomap_memory);
 
 #ifdef CONFIG_OF
+#include <linux/of.h>
+
 /**
  * of_find_property_value_of_size
  *


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] compat.3.7, compat.3.8: Adds missing of.h include
  2013-12-10 15:36 [PATCH] compat.3.7, compat.3.8: Adds missing of.h include Richard Röjfors
@ 2014-01-17 21:31 ` Hauke Mehrtens
  0 siblings, 0 replies; 2+ messages in thread
From: Hauke Mehrtens @ 2014-01-17 21:31 UTC (permalink / raw)
  To: Richard Röjfors, backports

On 12/10/2013 04:36 PM, Richard Röjfors wrote:
> This applies to 3.13-rc2
> 
> The compat-3.7.c och compat-3.8.c uses of-functions if supported by the
> kernel, but there is a missing include for linux/of.h.
> 
> This patch fixes the compile error which looks like this:
> 
> | NOTE: make -j 8 ARCH=arm KLIB_BUILD=/path/usr/src/kernel KLIB=/path/image
> |   CC [M]  /path/backports-3.13-rc2-1/compat/compat-3.7.o
> | /path/backports-3.13-rc2-1/compat/compat-3.7.c: In function 'of_get_child_by_name':
> | /path/backports-3.13-rc2-1/compat/compat-3.7.c:274:1: error: unknown type name 'z'
> | /path/backports-3.13-rc2-1/compat/compat-3.7.c:276:3: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'if'
> | make[6]: *** [/path/backports-3.13-rc2-1/compat/compat-3.7.o] Error 1
> | make[5]: *** [/path/backports-3.13-rc2-1/compat] Error 2
> | make[4]: *** [_module_/path/backports/3.13-rc2-1-r0/backports-3.13-rc2-1] Error 2
> | make[3]: *** [modules] Error 2
> | make[2]: *** [modules] Error 2
> | make[1]: *** [modules] Error 2
> | make: *** [default] Error 2
> 
> Signed-off-by: Richard Röjfors <richard.rojfors@gmail.com>
> ---
> --- backports-3.13-rc2-1.org/compat/compat-3.7.c	2013-12-05 12:19:56.161016836 +0100
> +++ backports-3.13-rc2-1.new/compat/compat-3.7.c	2013-12-05 12:18:40.257012431 +0100
> @@ -256,6 +256,8 @@
>  
>  #ifdef CONFIG_OF
>  #if (LINUX_VERSION_CODE < KERNEL_VERSION(3,7,0))
> +#include <linux/of.h>
> +
>  /**
>   *	of_get_child_by_name - Find the child node by name for a given parent
>   *	@node:	parent node
> --- backports-3.13-rc2-1.org/compat/compat-3.8.c	2013-12-05 12:17:53.093009694 +0100
> +++ backports-3.13-rc2-1.new/compat/compat-3.8.c	2013-12-05 12:18:42.745012576 +0100
> @@ -420,6 +420,8 @@
>  EXPORT_SYMBOL_GPL(vm_iomap_memory);
>  
>  #ifdef CONFIG_OF
> +#include <linux/of.h>
> +
>  /**
>   * of_find_property_value_of_size
>   *
> 
In backports-20131206 linux/of.h already gets included in
compat/compat-3.7.c and compat/compat-3.8.c.

Could you check if this work for you.

Hauke


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-01-17 21:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-10 15:36 [PATCH] compat.3.7, compat.3.8: Adds missing of.h include Richard Röjfors
2014-01-17 21:31 ` Hauke Mehrtens

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.