From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752718AbdLGQMk (ORCPT ); Thu, 7 Dec 2017 11:12:40 -0500 Received: from fldsmtpe03.verizon.com ([140.108.26.142]:19112 "EHLO fldsmtpe03.verizon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752532AbdLGQMc (ORCPT ); Thu, 7 Dec 2017 11:12:32 -0500 From: alexander.levin@verizon.com X-Host: endeavour.tdc.vzwcorp.com To: "mingo@kernel.org" CC: "linux-kernel@vger.kernel.org" Subject: [PATCH 1/2] tools/lib/lockdep: Add missing declaration of 'pr_cont()' Thread-Topic: [PATCH 1/2] tools/lib/lockdep: Add missing declaration of 'pr_cont()' Thread-Index: AQHTb3X6gUzYLVyAk0aEx70ng5B6ug== Date: Thu, 7 Dec 2017 16:11:03 +0000 Message-ID: <20171207161057.7406-2-alexander.levin@verizon.com> References: <20171207161057.7406-1-alexander.levin@verizon.com> In-Reply-To: <20171207161057.7406-1-alexander.levin@verizon.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ms-exchange-messagesentrepresentingtype: 1 x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.144.60.250] Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id vB7GCieU002473 From: Mengting Zhang An annoying compile warning due to missing declaration is shown below: In file included from lockdep.c:27:0: ../../../kernel/locking/lockdep.c: In function 'print_unlock_imbalance_bug' : ../../../kernel/locking/lockdep.c:3544:2: warning: implicit declaration of function 'pr_cont' [-Wimplicit-function-declaration] pr_cont(") at:\n"); ^ Adding the declaration of 'pr_cont' fixes the problem. Reviewed-by: Alexander Sverdlin Signed-off-by: Mengting Zhang Signed-off-by: Sasha Levin --- tools/include/linux/lockdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/include/linux/lockdep.h b/tools/include/linux/lockdep.h index 940c1b075659..6b0c36a58fcb 100644 --- a/tools/include/linux/lockdep.h +++ b/tools/include/linux/lockdep.h @@ -48,6 +48,7 @@ static inline int debug_locks_off(void) #define printk(...) dprintf(STDOUT_FILENO, __VA_ARGS__) #define pr_err(format, ...) fprintf (stderr, format, ## __VA_ARGS__) #define pr_warn pr_err +#define pr_cont pr_err #define list_del_rcu list_del -- 2.11.0