Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1676297 > unrolled thread

[PATCH -next] hexagon: Fix compile error

Started byGuenter Roeck <linux@roeck-us.net>
First post2017-06-28 02:50 +0200
Last post2017-06-28 16:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH -next] hexagon: Fix compile error Guenter Roeck <linux@roeck-us.net> - 2017-06-28 02:50 +0200
    Re: [PATCH -next] hexagon: Fix compile error Christoph Hellwig <hch@lst.de> - 2017-06-28 16:00 +0200

#1676297 — [PATCH -next] hexagon: Fix compile error

FromGuenter Roeck <linux@roeck-us.net>
Date2017-06-28 02:50 +0200
Subject[PATCH -next] hexagon: Fix compile error
Message-ID<tX9l8-89M-7@gated-at.bofh.it>
Fix:

arch/hexagon/kernel/dma.c: At top level:
arch/hexagon/kernel/dma.c:209:40: error: expected '}' before ';' token

Cc: Christoph Hellwig <hch@lst.de>
Fixes: 8715a7227c30b ("hexagon: switch to use ->mapping_error for ...")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
Maybe fold into the offending patch if possible ?

 arch/hexagon/kernel/dma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/hexagon/kernel/dma.c b/arch/hexagon/kernel/dma.c
index 9ff1b2041f85..546792d176a4 100644
--- a/arch/hexagon/kernel/dma.c
+++ b/arch/hexagon/kernel/dma.c
@@ -206,7 +206,7 @@ const struct dma_map_ops hexagon_dma_ops = {
 	.map_page	= hexagon_map_page,
 	.sync_single_for_cpu = hexagon_sync_single_for_cpu,
 	.sync_single_for_device = hexagon_sync_single_for_device,
-	.mapping_error	= hexagon_mapping_error;
+	.mapping_error	= hexagon_mapping_error,
 	.is_phys	= 1,
 };
 
-- 
2.7.4

[toc] | [next] | [standalone]


#1676676

FromChristoph Hellwig <hch@lst.de>
Date2017-06-28 16:00 +0200
Message-ID<tXlFE-7uy-7@gated-at.bofh.it>
In reply to#1676297
On Tue, Jun 27, 2017 at 05:43:14PM -0700, Guenter Roeck wrote:
> Fix:
> 
> arch/hexagon/kernel/dma.c: At top level:
> arch/hexagon/kernel/dma.c:209:40: error: expected '}' before ';' token
> 
> Cc: Christoph Hellwig <hch@lst.de>
> Fixes: 8715a7227c30b ("hexagon: switch to use ->mapping_error for ...")
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> Maybe fold into the offending patch if possible ?

Will do.  So it looks like your build farm builds hexagon, but the
official build bot doesn't, sigh..

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web