Skip to content

Commit c6496e0

Browse files
BenjaminBeichlerrichardweinberger
authored andcommitted
um: Remove straying parenthesis
Commit e3a33af ("um: fix and optimize xor select template for CONFIG64 and timetravel mode") caused a build regression when CONFIG_XOR_BLOCKS and CONFIG_UML_TIME_TRAVEL_SUPPORT are selected. Fix it by removing the straying parenthesis. Cc: [email protected] Fixes: e3a33af ("um: fix and optimize xor select template for CONFIG64 and timetravel mode") Signed-off-by: Benjamin Beichler <[email protected]> [rw: Added commit message] Signed-off-by: Richard Weinberger <[email protected]>
1 parent e062356 commit c6496e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/um/include/asm/xor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#undef XOR_SELECT_TEMPLATE
1919
/* pick an arbitrary one - measuring isn't possible with inf-cpu */
2020
#define XOR_SELECT_TEMPLATE(x) \
21-
(time_travel_mode == TT_MODE_INFCPU ? TT_CPU_INF_XOR_DEFAULT : x))
21+
(time_travel_mode == TT_MODE_INFCPU ? TT_CPU_INF_XOR_DEFAULT : x)
2222
#endif
2323

2424
#endif

0 commit comments

Comments
 (0)