From patchwork Fri Oct 13 09:42:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Berg X-Patchwork-Id: 10003991 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 6FE306037E for ; Fri, 13 Oct 2017 09:42:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 63F0628FFD for ; Fri, 13 Oct 2017 09:42:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5908F29005; Fri, 13 Oct 2017 09:42:34 +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 1D07D2900C for ; Fri, 13 Oct 2017 09:42:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757752AbdJMJmd (ORCPT ); Fri, 13 Oct 2017 05:42:33 -0400 Received: from s3.sipsolutions.net ([144.76.63.242]:49160 "EHLO sipsolutions.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757573AbdJMJmc (ORCPT ); Fri, 13 Oct 2017 05:42:32 -0400 Received: by sipsolutions.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1e2wUB-000389-Bs; Fri, 13 Oct 2017 11:42:31 +0200 From: Johannes Berg To: backports@vger.kernel.org Cc: Johannes Berg Subject: [PATCH v2 04/11] backports: add hex_byte_pack Date: Fri, 13 Oct 2017 11:42:19 +0200 Message-Id: <20171013094226.10021-4-johannes@sipsolutions.net> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20171013094226.10021-1-johannes@sipsolutions.net> References: <20171013094226.10021-1-johannes@sipsolutions.net> Sender: backports-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: backports@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Johannes Berg This was just renamed at some point, needed by bin2hex() in the next patch. Signed-off-by: Johannes Berg --- backport/backport-include/linux/kernel.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backport/backport-include/linux/kernel.h b/backport/backport-include/linux/kernel.h index ea55d7d3b143..0e9a69f9bcd2 100644 --- a/backport/backport-include/linux/kernel.h +++ b/backport/backport-include/linux/kernel.h @@ -159,6 +159,8 @@ #endif /* rounddown */ #if LINUX_VERSION_IS_LESS(3,2,0) +#define hex_byte_pack pack_hex_byte + /* kernels before 3.2 didn't have error checking for the function */ #define hex2bin LINUX_BACKPORT(hex2bin) int __must_check hex2bin(u8 *dst, const char *src, size_t count);