diff mbox

arm/xen: remove redundant semicolon in definition of ioremap_cached

Message ID 1388758643-3897-1-git-send-email-baozich@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Chen Baozi Jan. 3, 2014, 2:17 p.m. UTC
Reported-by: Wei Liu <liuw@liuw.name>
Signed-off-by: Chen Baozi <baozich@gmail.com>
---
 arch/arm/include/asm/xen/page.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Ian Campbell Jan. 6, 2014, 10:11 a.m. UTC | #1
On Fri, 2014-01-03 at 22:17 +0800, Chen Baozi wrote:
> Reported-by: Wei Liu <liuw@liuw.name>
> Signed-off-by: Chen Baozi <baozich@gmail.com>

Heh, Wei beat you to the patch by 14 minutes ;-)

See <1388757815-11394-1-git-send-email-wei.liu2@citrix.com>

Ian.
Chen Baozi Jan. 6, 2014, 1:29 p.m. UTC | #2
On Jan 6, 2014, at 18:11, Ian Campbell <Ian.Campbell@citrix.com> wrote:

> On Fri, 2014-01-03 at 22:17 +0800, Chen Baozi wrote:
>> Reported-by: Wei Liu <liuw@liuw.name>
>> Signed-off-by: Chen Baozi <baozich@gmail.com>
> 
> Heh, Wei beat you to the patch by 14 minutes ;-)

lol, there must be something wrong with my mail box. I didn’t notice
it when sending this patch.

> 
> See <1388757815-11394-1-git-send-email-wei.liu2@citrix.com>
> 
> Ian.
>
diff mbox

Patch

diff --git a/arch/arm/include/asm/xen/page.h b/arch/arm/include/asm/xen/page.h
index b3368df..8a6155f 100644
--- a/arch/arm/include/asm/xen/page.h
+++ b/arch/arm/include/asm/xen/page.h
@@ -120,7 +120,7 @@  static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
 #ifdef CONFIG_ARM64
 #define xen_remap(cookie, size) ioremap_cache((cookie), (size))
 #else
-#define xen_remap(cookie, size) ioremap_cached((cookie), (size));
+#define xen_remap(cookie, size) ioremap_cached((cookie), (size))
 #endif
 
 #endif /* _ASM_ARM_XEN_PAGE_H */