From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756389AbaBUVeL (ORCPT ); Fri, 21 Feb 2014 16:34:11 -0500 Received: from terminus.zytor.com ([198.137.202.10]:59391 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756362AbaBUVeJ (ORCPT ); Fri, 21 Feb 2014 16:34:09 -0500 Date: Fri, 21 Feb 2014 13:33:30 -0800 From: tip-bot for Dongsheng Yang Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, peterz@infradead.org, tglx@linutronix.de, yangds.fnst@cn.fujitsu.com Reply-To: mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, peterz@infradead.org, tglx@linutronix.de, yangds.fnst@cn.fujitsu.com In-Reply-To: References: To: linux-tip-commits@vger.kernel.org Subject: [tip:sched/core] sched: prio: Add spaces before and after operator of '-'. Git-Commit-ID: 02228c930672ec5476cf8ef84e4f3f45ab01b597 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 02228c930672ec5476cf8ef84e4f3f45ab01b597 Gitweb: http://git.kernel.org/tip/02228c930672ec5476cf8ef84e4f3f45ab01b597 Author: Dongsheng Yang AuthorDate: Tue, 11 Feb 2014 15:34:48 +0800 Committer: Thomas Gleixner CommitDate: Fri, 21 Feb 2014 21:43:20 +0100 sched: prio: Add spaces before and after operator of '-'. cc: Peter Zijlstra cc: Ingo Molnar Cc: Ingo Molnar Signed-off-by: Dongsheng Yang Signed-off-by: Peter Zijlstra Link: http://lkml.kernel.org/r/bcbf88bb25b5423e8d33b3aa0c2e829a23d56c76.1392103744.git.yangds.fnst@cn.fujitsu.com Signed-off-by: Thomas Gleixner --- include/linux/sched/prio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/sched/prio.h b/include/linux/sched/prio.h index ac32258..1bf9935 100644 --- a/include/linux/sched/prio.h +++ b/include/linux/sched/prio.h @@ -37,7 +37,7 @@ * can work with better when scaling various scheduler parameters, * it's a [ 0 ... 39 ] range. */ -#define USER_PRIO(p) ((p)-MAX_RT_PRIO) +#define USER_PRIO(p) ((p) - MAX_RT_PRIO) #define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio) #define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))