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 82402C433EF for ; Mon, 28 Feb 2022 13:41:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234590AbiB1Nlz (ORCPT ); Mon, 28 Feb 2022 08:41:55 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37638 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234969AbiB1Nly (ORCPT ); Mon, 28 Feb 2022 08:41:54 -0500 X-Greylist: delayed 401 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Mon, 28 Feb 2022 05:41:13 PST Received: from bergelmir.uberspace.de (bergelmir.uberspace.de [185.26.156.157]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 91BCC7C7AB for ; Mon, 28 Feb 2022 05:41:13 -0800 (PST) Received: (qmail 32106 invoked by uid 989); 28 Feb 2022 13:34:30 -0000 Authentication-Results: bergelmir.uberspace.de; auth=pass (plain) From: Daniel Braunwarth To: netdev@vger.kernel.org Cc: davem@davemloft.net, kuba@kernel.org, daniel@braunwarth.dev Subject: [PATCH net-next 2/2] if_ether.h: add EtherCAT Ethertype Date: Mon, 28 Feb 2022 14:30:29 +0100 Message-Id: <20220228133029.100913-3-daniel@braunwarth.dev> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220228133029.100913-1-daniel@braunwarth.dev> References: <20220228133029.100913-1-daniel@braunwarth.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Rspamd-Bar: ----- X-Rspamd-Report: R_MISSING_CHARSET(0.5) MIME_GOOD(-0.1) REPLY(-4) MID_CONTAINS_FROM(1) BAYES_HAM(-2.999999) X-Rspamd-Score: -5.599999 Received: from unknown (HELO unkown) (::1) by bergelmir.uberspace.de (Haraka/2.8.28) with ESMTPSA; Mon, 28 Feb 2022 14:34:30 +0100 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Add the Ethertype for EtherCAT protocol. Signed-off-by: Daniel Braunwarth --- include/uapi/linux/if_ether.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/uapi/linux/if_ether.h b/include/uapi/linux/if_ether.h index 4f4ed35a16db..1d0bccc3fa54 100644 --- a/include/uapi/linux/if_ether.h +++ b/include/uapi/linux/if_ether.h @@ -89,6 +89,7 @@ #define ETH_P_PROFINET 0x8892 /* PROFINET */ #define ETH_P_REALTEK 0x8899 /* Multiple proprietary protocols */ #define ETH_P_AOE 0x88A2 /* ATA over Ethernet */ +#define ETH_P_ETHERCAT 0x88A4 /* EtherCAT */ #define ETH_P_8021AD 0x88A8 /* 802.1ad Service VLAN */ #define ETH_P_802_EX1 0x88B5 /* 802.1 Local Experimental 1. */ #define ETH_P_PREAUTH 0x88C7 /* 802.11 Preauthentication */ -- 2.35.1