From dd0c671384e9cd90b7774d2685a52dc055597ef1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 18 Jun 2011 06:43:57 +0000 Subject: [PATCH] opcodes: blackfin: fix style Signed-off-by: Mike Frysinger --- include/opcode/ChangeLog | 5 +++++ include/opcode/bfin.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 782d7fea7..f33c0e65c 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,8 @@ +2011-06-18 Mike Frysinger + + * bfin.h (is_macmod_pmove): Add missing space before func args. + (is_macmod_hmove): Likewise. + 2011-06-13 Walter Lee * tilegx.h: New file. diff --git a/include/opcode/bfin.h b/include/opcode/bfin.h index 730f63c24..30bb90d26 100755 --- a/include/opcode/bfin.h +++ b/include/opcode/bfin.h @@ -41,13 +41,13 @@ #define M_IH 11 #define M_IU 12 -static inline int is_macmod_pmove(int x) +static inline int is_macmod_pmove (int x) { return (x == 0) || (x == M_IS) || (x == M_FU) || (x == M_S2RND) || (x == M_ISS2) || (x == M_IU); } -static inline int is_macmod_hmove(int x) +static inline int is_macmod_hmove (int x) { return (x == 0) || (x == M_IS) || (x == M_FU) || (x == M_IU) || (x == M_T) || (x == M_TFU) || (x == M_S2RND) || (x == M_ISS2) || (x == M_IH); -- 2.11.4.GIT