From patchwork Sun Feb 18 13:24:56 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Coelho X-Patchwork-Id: 10226771 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 52340602DC for ; Sun, 18 Feb 2018 13:55:56 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 42C2328AEC for ; Sun, 18 Feb 2018 13:55:56 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 37CC528AEF; Sun, 18 Feb 2018 13:55:56 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BDEDE28AEC for ; Sun, 18 Feb 2018 13:55:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751485AbeBRNzz (ORCPT ); Sun, 18 Feb 2018 08:55:55 -0500 Received: from paleale.coelho.fi ([176.9.41.70]:59538 "EHLO farmhouse.coelho.fi" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751478AbeBRNzz (ORCPT ); Sun, 18 Feb 2018 08:55:55 -0500 Received: from 91-156-4-241.elisa-laajakaista.fi ([91.156.4.241] helo=redipa.ger.corp.intel.com) by farmhouse.coelho.fi with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1enOxr-0001N7-Hv; Sun, 18 Feb 2018 15:25:11 +0200 From: Luca Coelho To: backports@vger.kernel.org Cc: Luca Coelho Date: Sun, 18 Feb 2018 15:24:56 +0200 Message-Id: <20180218132459.11011-8-luca@coelho.fi> X-Mailer: git-send-email 2.15.1 In-Reply-To: <20180218132459.11011-1-luca@coelho.fi> References: <20180218132459.11011-1-luca@coelho.fi> X-SA-Exim-Connect-IP: 91.156.4.241 X-SA-Exim-Mail-From: luca@coelho.fi Subject: [PATCH 07/10] backports: fix typo "TIMKEEPING" and fix gfp.h X-SA-Exim-Version: 4.2.1 (built Tue, 02 Aug 2016 21:08:31 +0000) X-SA-Exim-Scanned: Yes (on farmhouse.coelho.fi) Sender: backports-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: backports@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Luca Coelho There is a typo in the timekeeping.h backport, fix that. Additionally, fix the gfp.h file tha has a copy/paste issue where __BACKPORT_TIMKEEPING_H is used instead of __BACKPORT_LINUX_GFP_H. Signed-off-by: Luca Coelho --- backport/backport-include/linux/gfp.h | 2 +- backport/backport-include/linux/timekeeping.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backport/backport-include/linux/gfp.h b/backport/backport-include/linux/gfp.h index b4db7bb9066e..42f818f1fee3 100644 --- a/backport/backport-include/linux/gfp.h +++ b/backport/backport-include/linux/gfp.h @@ -10,4 +10,4 @@ #define __GFP_KSWAPD_RECLAIM ((__force gfp_t)___GFP_KSWAPD_RECLAIM) /* kswapd can wake */ #endif -#endif /* __BACKPORT_TIMKEEPING_H */ +#endif /* __BACKPORT_LINUX_GFP_H */ diff --git a/backport/backport-include/linux/timekeeping.h b/backport/backport-include/linux/timekeeping.h index b683d1298336..0b9c649a3395 100644 --- a/backport/backport-include/linux/timekeeping.h +++ b/backport/backport-include/linux/timekeeping.h @@ -1,5 +1,5 @@ -#ifndef __BACKPORT_TIMKEEPING_H -#define __BACKPORT_TIMKEEPING_H +#ifndef __BACKPORT_TIMEKEEPING_H +#define __BACKPORT_TIMEKEEPING_H #include #include @@ -35,4 +35,4 @@ static inline time64_t ktime_get_seconds(void) } #endif -#endif /* __BACKPORT_TIMKEEPING_H */ +#endif /* __BACKPORT_TIMEKEEPING_H */