Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp2974861pxu; Sat, 19 Dec 2020 07:50:02 -0800 (PST) X-Google-Smtp-Source: ABdhPJwDlW2/fjI14YkyVARz8Pr16oY8eFjXDHkTxnfWQgeb/zbm0c6kdabAw6UGU+PczNBjTjBo X-Received: by 2002:a05:6402:229c:: with SMTP id cw28mr9219960edb.285.1608393002691; Sat, 19 Dec 2020 07:50:02 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1608393002; cv=none; d=google.com; s=arc-20160816; b=WbY728SjPszr4SvABWnhSaaB6V3NJ7+DYCWyfLc4iF6+S+NZRmDXurg9dzHC/rGGiQ 4/BbroZ3UpVn3YEUo0tHri7tyMA4DjX+1KfyLEpM72QMQuo2OBbCmzOJ/qLqA9p9QTZw yj9w1+gEBg7IAR/uOnzt1uRwsn+SPJxAk1mwAr8RjK2BGU7dhTaha0ZLmfLxsHCCcSih cogwkyKQhRWh/sw3v6pYk2NfhLHpqzNjhOEwDP2e0a3oSsEqsdA1k0rAzl3xppEDnm6G X6kzuxZszlhLQneDcEQUrzmo2+1bYfQ4/YMYJDuuJTKAOiv5RZHUe7RM42tmS7Ok6Zar C2Pg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=gBrTKOGaYYQbeobjQHJz0Nxm/WMt9E+uGaGy53ws5uE=; b=S/EOEbm4T0YhzS2cpZSrEF2sDlvWgmB3EWCZOpMPt1q4K0N3V6mBKCRpdsGBMGld08 /h2oMzIZywCeftb2qHwm+ihqR7LycungQkb5StLxQw0UDz8uqzq5O6jgVQkwhHSZ8kD1 s6RrLdAEVokSuuzg6YCHyALCGV+BarcMb/eJdCBN6UNSyhvKv7OeXxDX/yxxX4u0isHT K1KBFBw+WYNmlk1q/8mePdeFFm9nNeboZMiz7e1FW28iKQxD8vDu68ySOWtK5J7otD3w nPs+MV3eHSQkUC8t+s+FYEL30LVIOdFzNnHAMS65E4UkTBT4pFUgqV3GDQb0jnEFoSE2 OVYQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id q14si1475230ejx.155.2020.12.19.07.49.13; Sat, 19 Dec 2020 07:50:02 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726785AbgLSPsK (ORCPT + 99 others); Sat, 19 Dec 2020 10:48:10 -0500 Received: from elvis.franken.de ([193.175.24.41]:50498 "EHLO elvis.franken.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726748AbgLSPsK (ORCPT ); Sat, 19 Dec 2020 10:48:10 -0500 Received: from uucp (helo=alpha) by elvis.franken.de with local-bsmtp (Exim 3.36 #1) id 1kqeS8-0004Nk-00; Sat, 19 Dec 2020 16:47:28 +0100 Received: by alpha.franken.de (Postfix, from userid 1000) id A920BC01CC; Sat, 19 Dec 2020 16:26:16 +0100 (CET) Date: Sat, 19 Dec 2020 16:26:16 +0100 From: Thomas Bogendoerfer To: Bert Vermeulen Cc: Oleksij Rempel , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Add support for Realtek RTL838x/RTL839x switch SoCs Message-ID: <20201219152616.GA5012@alpha.franken.de> References: <20201215183557.646034-1-bert@biot.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Dec 18, 2020 at 12:27:32AM +0100, Bert Vermeulen wrote: > On 12/15/20 11:11 PM, Oleksij Rempel wrote: > > Hello Bert, > > > > thank you for your work. Here are some comments.. > > Thanks for reviewing. I will send in a V2 with your comments all handled. > > > I assume, after applying all needed changes, there will be no files within > > arch/mips/include/asm/mach-realtek :) > > I wish! Unfortunately I need somewhere to put the early printk init call, > and the SoC family ID checks -- as they are heavily used in various drivers. just as a prevention, don't put realtek specific files into mach-realtek, but only use realtek as directory name. The mach-xxx directories are special and I have a mission on my todo to move the non-special files into their own directores... Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]