Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp2968153pxf; Sun, 21 Mar 2021 13:24:40 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxrgQhJv21fziISE9ZFqiI5lWggCPPzj4kBkvMkf9FiPRgEd5XxuKTt9Wp86gpwsm7kbgRb X-Received: by 2002:a17:906:ad4:: with SMTP id z20mr15626652ejf.496.1616358280590; Sun, 21 Mar 2021 13:24:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1616358280; cv=none; d=google.com; s=arc-20160816; b=P75YhUpvucuir7Xgjz8r5F/UVX4EyJA6YE2myJRkjO26m5sv6yPox+P+4cqB7VQsZl 5BHIBucmy0efZpyzmFMk5PUykFn7SRITSfBGts88HEn3XIP+TJM9pO7k7zskuplWpxlr Rs1+ufNj8fTN3f/6d9UFrl+r7rDHy7yMn2spC7bbuoh+VoVOyUkKDQI4Otw9Z5QjTEjB 2mPu7NwJP+UHqcvq9CLdnXpSPOdwOPpst3Fbx8A6FRJR6O/ZR2vpjjKUA8vcjosQdhPd nwb5pI5Q/LCh62qIVfC+JDpfdlNN6/2Odc3fh1eVaTc90rHmpatFTETU4SPTw/Lo7XYc BfOA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:user-agent:message-id:subject:cc:to :from:date; bh=v9MQFvty0WbF0JG+mxGZ+7WNxAmEOH10bWskyKZqipg=; b=GxM9IK6/k7l9fb26IJAhYC5TwxyBK/7H59+rnibt7BW55SPCj5lCliCs6aAVF/cR/N d8n8SFSqhtDaDmeySWramY5dryO8ys2MTfscZ8PUJIxNqUYBke3Yb5OdstDcLi2s76As zlTdGBRJPILsKJ/2deOHfXVp0C2AezIwhSWZk7rxKgpGVRR8rURplRrG8mjN9EjNqb4j aByyKMuLb4tiuaJNFdEonCc3qSRtliIBcDH/sfKXRu+YY6++0P+NVSr+2wMlHlNgpz/S tstq5KAXWSZ2f3ZbUYKw6AKyZZdP2mkg/V/WUQG5cDNY+K9jP0h+Ysv2I84keoRS6FBw u4/Q== 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 el21si7386300ejc.603.2021.03.21.13.24.18; Sun, 21 Mar 2021 13:24:40 -0700 (PDT) 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 S230370AbhCUT4d (ORCPT + 99 others); Sun, 21 Mar 2021 15:56:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35072 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230296AbhCUTzi (ORCPT ); Sun, 21 Mar 2021 15:55:38 -0400 Received: from angie.orcam.me.uk (angie.orcam.me.uk [IPv6:2001:4190:8020::4]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 1E1D9C061574; Sun, 21 Mar 2021 12:55:38 -0700 (PDT) Received: by angie.orcam.me.uk (Postfix, from userid 500) id 7E8D492009D; Sun, 21 Mar 2021 20:55:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by angie.orcam.me.uk (Postfix) with ESMTP id 78DF392009B; Sun, 21 Mar 2021 20:55:37 +0100 (CET) Date: Sun, 21 Mar 2021 20:55:37 +0100 (CET) From: "Maciej W. Rozycki" To: linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org cc: Thomas Bogendoerfer , Christoph Hellwig Subject: [PATCH 0/2] MIPS: SiByte: Update SWARM defconfig for PATA support Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, In the course of looking into Christoph's recent proposal to drop legacy IDE drivers I have noticed that SiByte SWARM's defconfig does not enable the pata_platform driver for the onboard PATA interface. I think default configuration ought to enable all the supported onboard devices unless there are specific reasons so as not to, and the PATA interface is one of the boot devices supported by the CFE firmware, so I think even more then that it should be included by default. Change split into two because the defconfig has become stale since the last update, so 1/2 first regenerates it, and then 2/2 applies the actual modification. Sadly I'm currently away from my SWARM board for the foreseeable future and I have no remote access to it either, but this is supposed not to need run-time verification. Build-tested only then. Please apply. Maciej