From: Wu Zhangjin Date: Thu, 6 May 2010 17:29:45 +0000 (+0800) Subject: MIPS: Oprofile: Loongson: Remove useless parentheses X-Git-Tag: v2.6.35-rc1~443^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c838abc511ed710bdc2d93e0d8b5449be953849e;p=platform%2Fkernel%2Flinux-3.10.git MIPS: Oprofile: Loongson: Remove useless parentheses Signed-off-by: Wu Zhangjin Cc: linux-mips@linux-mips.org Patchwork: http://patchwork.linux-mips.org/patch/1201/ Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/oprofile/op_model_loongson2.c b/arch/mips/oprofile/op_model_loongson2.c index 93d8b7d..596fb08 100644 --- a/arch/mips/oprofile/op_model_loongson2.c +++ b/arch/mips/oprofile/op_model_loongson2.c @@ -66,7 +66,7 @@ static void loongson2_reg_setup(struct op_counter_config *cfg) if (cfg[1].enabled) { ctrl |= LOONGSON2_PERFCTRL_EVENT(1, cfg[1].event); - reg.reset_counter2 = (0x80000000ULL - cfg[1].count); + reg.reset_counter2 = 0x80000000ULL - cfg[1].count; } if (cfg[0].enabled || cfg[1].enabled) {