From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 99344C7618E for ; Wed, 26 Apr 2023 22:57:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240007AbjDZW5u (ORCPT ); Wed, 26 Apr 2023 18:57:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33626 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233734AbjDZW5t (ORCPT ); Wed, 26 Apr 2023 18:57:49 -0400 Received: from mail-40131.protonmail.ch (mail-40131.protonmail.ch [185.70.40.131]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id AFA1C358E; Wed, 26 Apr 2023 15:57:41 -0700 (PDT) Date: Wed, 26 Apr 2023 22:57:36 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=protonmail; t=1682549859; x=1682809059; bh=Am8voCH8GOR8bFHGaPEgtzx6XI7KOtL2F7jxIt9VklA=; h=Date:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=m4ielrnFyBQ2TxvtChRcyZBWNh+tAXXRh6t+84m84j5S0rfD4AWYZWLZ8oScmATL/ ysX+HRHSPMP7YjpynvhWJupOrzkfCucNdCCHuE34OZyH/uUxqrH77BN2cmELkraQ4B oy7UucJpx9iGBTshXtV2Z/5iKbYfuSLUDrk4BZD2DO/98Lx7FguXDaELfiMDuO7CyT PBOKoEnxALza/SQJALqS0eOg4t3qqxXi8lxpDQnb3ddK6qkAYNZObIZLQMPMHA98iN DjN/n9JF9Y3nbJ2Kf07cH6Ps+K6YLjTRGjFQkBtwXjW42Pb5lQivp2E41/XGNOeWpg xu7hyYNu+icdw== From: materoy@proton.me Cc: Roy Matero , Miguel Ojeda , Alex Gaynor , Wedson Almeida Filho , Boqun Feng , Gary Guo , =?utf-8?Q?Bj=C3=B6rn_Roy_Baron?= , Benno Lossin , Alice Ryhl , Martin Rodriguez Reboredo , rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] rust: bindings: fix sorting of rust/bindings/bindings_helper.h's #includes Message-ID: <20230426224748.34056-1-materoy@proton.me> Feedback-ID: 71587999:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org From: Roy Matero Fix sorting of rust/bindings/binding_helper.h's includes, to maintain consistency and rust idoms Suggested-by: Miguel Ojeda Link: https://github.com/Rust-for-Linux/linux/issues/1002 Signed-off-by: Roy Matero --- rust/bindings/bindings_helper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/bindings/bindings_helper.h b/rust/bindings/bindings_helpe= r.h index 50e7a76d5455..dc8d97272e71 100644 --- a/rust/bindings/bindings_helper.h +++ b/rust/bindings/bindings_helper.h @@ -6,10 +6,10 @@ * Sorted alphabetically. */ -#include #include -#include #include +#include +#include /* `bindgen` gets confused at certain things. */ const gfp_t BINDINGS_GFP_KERNEL =3D GFP_KERNEL; -- 2.40.1