| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- From patchwork Tue Dec 10 08:14:37 2019
- Content-Type: text/plain; charset="utf-8"
- MIME-Version: 1.0
- Content-Transfer-Encoding: 7bit
- X-Patchwork-Submitter: Landen Chao <[email protected]>
- X-Patchwork-Id: 1206962
- X-Patchwork-Delegate: [email protected]
- Return-Path: <[email protected]>
- X-Original-To: [email protected]
- Delivered-To: [email protected]
- Authentication-Results: ozlabs.org; spf=none (no SPF record)
- smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67;
- helo=vger.kernel.org;
- [email protected];
- receiver=<UNKNOWN>)
- Authentication-Results: ozlabs.org; dmarc=pass (p=none dis=none)
- header.from=mediatek.com
- Authentication-Results: ozlabs.org; dkim=pass (1024-bit key;
- unprotected) header.d=mediatek.com [email protected]
- header.b="pTp2PPKi"; dkim-atps=neutral
- Received: from vger.kernel.org (vger.kernel.org [209.132.180.67])
- by ozlabs.org (Postfix) with ESMTP id 47XCY42hJqz9sRf
- for <[email protected]>;
- Tue, 10 Dec 2019 19:15:20 +1100 (AEDT)
- Received: ([email protected]) by vger.kernel.org via listexpand
- id S1727061AbfLJIO5 (ORCPT
- <rfc822;[email protected]>);
- Tue, 10 Dec 2019 03:14:57 -0500
- Received: from mailgw02.mediatek.com ([210.61.82.184]:45567 "EHLO
- mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by
- vger.kernel.org with ESMTP id S1726932AbfLJIO4 (ORCPT
- <rfc822;[email protected]>); Tue, 10 Dec 2019 03:14:56 -0500
- X-UUID: f5656f2ff80846ebb40e3da87d60fb90-20191210
- DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;
- d=mediatek.com; s=dk;
- h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:CC:To:From;
- bh=THbuVAlbiUyMgTyO0rwrKX/mskzsxNwDv9gxXp2O2c8=;
- b=pTp2PPKiPwR8QPOOf5yohf9lFERpEDlo/g/t2ChREfzFb9c+wylx++/div4hAB337+Ja2KIzbSu4URgdj5XHXUly8yuxrD8OBvV+ox0jlNLiRIN2dkCgL4fyzPr7ZPSk9lObJW05Yx2LY6Jy6eJZZXSShLlqLd0lDKwy6FT+hSI=;
- X-UUID: f5656f2ff80846ebb40e3da87d60fb90-20191210
- Received: from mtkcas07.mediatek.inc [(172.21.101.84)] by
- mailgw02.mediatek.com (envelope-from <[email protected]>)
- (Cellopoint E-mail Firewall v4.1.10 Build 0809 with TLS)
- with ESMTP id 565263134; Tue, 10 Dec 2019 16:14:47 +0800
- Received: from mtkcas08.mediatek.inc (172.21.101.126) by
- mtkmbs07n1.mediatek.inc (172.21.101.16) with Microsoft SMTP Server
- (TLS) id 15.0.1395.4; Tue, 10 Dec 2019 16:14:38 +0800
- Received: from mtksdccf07.mediatek.inc (172.21.84.99) by mtkcas08.mediatek.inc
- (172.21.101.73) with Microsoft SMTP Server id 15.0.1395.4 via
- Frontend Transport; Tue, 10 Dec 2019 16:14:26 +0800
- From: Landen Chao <[email protected]>
- To: <[email protected]>, <[email protected]>,
- <[email protected]>, <[email protected]>,
- <[email protected]>, <[email protected]>
- CC: <[email protected]>, <[email protected]>,
- <[email protected]>,
- <[email protected]>, <[email protected]>,
- <[email protected]>, <[email protected]>,
- <[email protected]>, Landen Chao <[email protected]>
- Subject: [PATCH net-next 1/6] net: dsa: mt7530: Refine message in Kconfig
- Date: Tue, 10 Dec 2019 16:14:37 +0800
- Message-ID: <6ecf6cbf38223f35854bc361c2eefa1d85c724d2.1575914275.git.landen.chao@mediatek.com>
- X-Mailer: git-send-email 2.18.0
- In-Reply-To: <[email protected]>
- References: <[email protected]>
- MIME-Version: 1.0
- X-MTK: N
- Sender: [email protected]
- Precedence: bulk
- List-ID: <netdev.vger.kernel.org>
- X-Mailing-List: [email protected]
- Refine message in Kconfig with fixing typo and an explicit MT7621 support.
- Signed-off-by: Landen Chao <[email protected]>
- Signed-off-by: Sean Wang <[email protected]>
- Reviewed-by: Florian Fainelli <[email protected]>
- ---
- drivers/net/dsa/Kconfig | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
- --- a/drivers/net/dsa/Kconfig
- +++ b/drivers/net/dsa/Kconfig
- @@ -33,12 +33,12 @@ config NET_DSA_LANTIQ_GSWIP
- the xrx200 / VR9 SoC.
-
- config NET_DSA_MT7530
- - tristate "Mediatek MT7530 Ethernet switch support"
- + tristate "MediaTek MT7530 and MT7621 Ethernet switch support"
- depends on NET_DSA
- select NET_DSA_TAG_MTK
- ---help---
- - This enables support for the Mediatek MT7530 Ethernet switch
- - chip.
- + This enables support for the MediaTek MT7530 and MT7621 Ethernet
- + switch chip.
-
- config NET_DSA_MV88E6060
- tristate "Marvell 88E6060 ethernet switch chip support"
|