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 X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F355CC433FF for ; Thu, 8 Aug 2019 21:47:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CC53821874 for ; Thu, 8 Aug 2019 21:47:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390429AbfHHVrC (ORCPT ); Thu, 8 Aug 2019 17:47:02 -0400 Received: from mail-qk1-f193.google.com ([209.85.222.193]:34110 "EHLO mail-qk1-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725535AbfHHVrC (ORCPT ); Thu, 8 Aug 2019 17:47:02 -0400 Received: by mail-qk1-f193.google.com with SMTP id z16so298018qka.1; Thu, 08 Aug 2019 14:47:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=xVLCEyuU5pBNVx1TCmAc/TP4L1lHqIgkx7yJEE6tqjk=; b=BCvBytVBiVBvTWeCrKeUp33mup6tUYno83H4KQGBoUT35Lf60WKZ5zzGnJnWQEUb8k AbzkzhLNXLgXFReaKL5Sk3f9AIG2mg2J207aOv65NWwdKHmIMHWfUugbMWw/3DFDGbpH BXGlR/FeMumrkHAK1/JnBhaf0xNV7LvU4Mns7mEPVvhzfWc0q2sVhnisatmic+n3DWFY SQIgigB88OITj8iI2qMXFkeIQ7KSoGUu3d7gWGE1A52kGkpVqpLbd5kgfoq8MCdO6BBc 0Ud3hvjinYhpuP+EWoVaoe9d5lizAz3ib5uJvXjQwom5nGfY8elSIpon4ae2Moxj/B/A u4Xg== X-Gm-Message-State: APjAAAXGxKwe6MMO4Ay5Oan5esBJEybMC/5hN8KNSh+Z1deIw5INsJyj YYKq7W925Bi8iVItTC8j6hk0WLtrqQr63Xp/cjU= X-Google-Smtp-Source: APXvYqy+B+qqsuvHb9p/Sjrie5IiMOZ5r/TClGgDChlxpboOO80aH3A3Oyu3iNJfjELi0RWYxk+y1/TmPK6BNCPDHbU= X-Received: by 2002:a37:76c5:: with SMTP id r188mr15459896qkc.394.1565300821239; Thu, 08 Aug 2019 14:47:01 -0700 (PDT) MIME-Version: 1.0 References: <20190808212234.2213262-1-arnd@arndb.de> <20190808212234.2213262-14-arnd@arndb.de> <20190808214257.GF178933@dtor-ws> In-Reply-To: <20190808214257.GF178933@dtor-ws> From: Arnd Bergmann Date: Thu, 8 Aug 2019 23:46:45 +0200 Message-ID: Subject: Re: [PATCH 13/22] input: omap: void using mach/*.h headers To: Dmitry Torokhov Cc: Tony Lindgren , Aaro Koskinen , linux-omap , Linux ARM , Greg Kroah-Hartman , Linus Walleij , Bartlomiej Zolnierkiewicz , Tomi Valkeinen , "open list:HID CORE LAYER" , Linux Kernel Mailing List Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 8, 2019 at 11:43 PM Dmitry Torokhov wrote: > > Hi Arnd, > > On Thu, Aug 08, 2019 at 11:22:22PM +0200, Arnd Bergmann wrote: > > By using the new linux/soc/ti/omap1-io.h header instead, > > compile-testing can be enabled, and a CONFIG_ARCH_MULTIPLATFORM > > conversion of omap1 may eventually be possible. > > > > The warning in the header file gets removed in order to > > allow CONFIG_COMPILE_TEST. > > Given that we want to migrate people off this driver everywhere but > OMAP1 I wonder why we would want to improve compile coverage of it. Mainly for consistency: I'm converting all omap1 drivers in this series to not rely on mach/* headers and to let them be compiled standalone. The other drivers don't have a replacement, so I could treat this different from the rest and skip the Kconfig and platform_data changes if you prefer. Arnd