Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757797AbcCCNk4 (ORCPT ); Thu, 3 Mar 2016 08:40:56 -0500 Received: from mout.kundenserver.de ([212.227.17.13]:64985 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757757AbcCCNky (ORCPT ); Thu, 3 Mar 2016 08:40:54 -0500 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Cc: Russell King - ARM Linux , linux-kernel@vger.kernel.org, Neil Armstrong Subject: Re: [PATCH 12/17] arm: Add new mach-oxnas Date: Thu, 03 Mar 2016 14:40:25 +0100 Message-ID: <2601661.x1MEzJ9CK0@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <20160303132956.GW19428@n2100.arm.linux.org.uk> References: <1457005210-18485-1-git-send-email-narmstrong@baylibre.com> <3226743.49AyJYeiGh@wuerfel> <20160303132956.GW19428@n2100.arm.linux.org.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:FgMPPhNFCcZ1GwpxVLhEq2zYtM2LgjVw+gNvg9FFqUYBjeW2vCn 1/a1y4/Uh0SYgsO0FZXhmNctczOwRjNqWIhaRIm+1g13iMbnMZg8zZTHa/rayvjXZr3zLeb mjSa3u8hzLpI+bG7jp2/GBr8ijpIrVQuVFvXOkK4ASbSyGW8HxBRhpkSL+IWNGQfo/QNPRj YmdNt7IxrItFH+YQHLeBw== X-UI-Out-Filterresults: notjunk:1;V01:K0:PRTCNw3bhEk=:o8eG3LGs91mwGMoysngyaz 3hlTu+5zW7Y4EPhAMC+JHRJ3y12/PN66xiCw9LPGetENqqdaRdbqDRzlin+VFPGBlYsH4udSD b4H9RlB4U905l9Y4Fd0GsPq1AF9a20CSbcnjjZzj17crqf9wQwc4GG0qNo5TeGqOSld7SQUfP 2puNcq/PN3nIF9vz91h+0UJhlgSJZBqxKPe24BN1mLb+QBHZkbsxrweAZoWIQjd3t72j62rtu 3s5V7UWNU+GdKXvvNLVZyZAW1FGfdPxdPXzBy8Xc9qTQ6N1PyKTlQS23L9NHaNQtvSMf2CY4I zLIW1yg6RwVdbZrFk+Ucd8xNx9CT+FUlJExOcOCuxKusqvDYN8KGV0MYY7a5aSLXJNLSGrRdA c8AjHhziXoTzTcjzSkN/Xagf9lP8iju9k7zRTPwUQoEOoBpIXHi8kqF5IfD4cji5ntMJ01YU2 oGNfg2f9i+U1ViNhhxIbJV2H2a6029thNorIKxowyhN7iS0Q08aCgtSduX98jdQC0shr/HAMy W+vvXfx2Cn9BlZVNYRc1akbUGlVoSuSOFYH3r5OsuOUZhW6ymmD97PWkXZME2YA5hy4O/Nu/j 5THz2QB1Qs3HKNzjRXUE9IKIgjUYovjCsNraL9LPOmzMwYzZQhSjRPJb4Cs5WtfxgOnQcBhB0 LhlWW/4cO3sPKMg8l+oUhSwhx7b3/qKK5fmv0S9LwTtcUnYM7a/JOmPPV9Ku0IXXBFZS5ey5p DVPFk2Ba/h4YbUXB Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 997 Lines: 21 On Thursday 03 March 2016 13:29:56 Russell King - ARM Linux wrote: > On Thu, Mar 03, 2016 at 01:56:56PM +0100, Arnd Bergmann wrote: > > As Russell mentioned, the entire file is not really needed either, but > > so far we have left the trivial per-platform files in place generally. > > I think that's something we should be looking to remove: if the > per-platform files give no benefit, then there is no point in > having them, and they just increase the size of the code base. > I agree, I think the main reason it hasn't been done yet is that nobody has thought in detail about whether or how to keep the last remaining piece of information (the machine name as printed in /proc/cpuinfo) when removing the machine descriptors. If we want to keep that around, we could probably have a global lookup table of root node compatible strings, or we decide to use the contents of the "model" property instead. This has been discussed several times in the pasts, without any real consensus. Arnd