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=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=unavailable 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 CBE9EC433F5 for ; Fri, 24 Sep 2021 07:04:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B489B6124D for ; Fri, 24 Sep 2021 07:04:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244296AbhIXHF5 (ORCPT ); Fri, 24 Sep 2021 03:05:57 -0400 Received: from muru.com ([72.249.23.125]:36762 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244299AbhIXHFu (ORCPT ); Fri, 24 Sep 2021 03:05:50 -0400 Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id AE3A080EE; Fri, 24 Sep 2021 07:04:45 +0000 (UTC) Date: Fri, 24 Sep 2021 10:04:15 +0300 From: Tony Lindgren To: Ulf Hansson Cc: Adrian Hunter , Chunyan Zhang , Faiz Abbas , Kishon Vijay Abraham I , Santosh Shilimkar , linux-mmc , linux-omap Subject: Re: [PATCH 4/5] mmc: sdhci-omap: Parse legacy ti,non-removable property Message-ID: References: <20210921110029.21944-1-tony@atomide.com> <20210921110029.21944-5-tony@atomide.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org * Ulf Hansson [210923 18:43]: > On Tue, 21 Sept 2021 at 13:00, Tony Lindgren wrote: > > --- a/drivers/mmc/host/sdhci-omap.c > > +++ b/drivers/mmc/host/sdhci-omap.c > > @@ -1213,6 +1213,11 @@ static int sdhci_omap_probe(struct platform_device *pdev) > > if (of_find_property(dev->of_node, "dmas", NULL)) > > sdhci_switch_external_dma(host, true); > > > > + if (device_property_read_bool(dev, "ti,non-removable")) { > > + dev_warn_once(dev, "using old ti,non-removable property\n"); > > Perhaps we should document this property for sdhci-omap and thus also > set it as deprecated. What do you think? Yes good idea, I'll send a patch for that. Regards, Tony