Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 44E53C433F5 for ; Wed, 1 Dec 2021 22:32:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1353683AbhLAWfW (ORCPT ); Wed, 1 Dec 2021 17:35:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45346 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1353640AbhLAWfO (ORCPT ); Wed, 1 Dec 2021 17:35:14 -0500 Received: from mail-pg1-x52b.google.com (mail-pg1-x52b.google.com [IPv6:2607:f8b0:4864:20::52b]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EA2D1C061574 for ; Wed, 1 Dec 2021 14:31:52 -0800 (PST) Received: by mail-pg1-x52b.google.com with SMTP id s37so15380053pga.9 for ; Wed, 01 Dec 2021 14:31:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=umzTzWZcfP0yiExHMah/W0arzACFOIq7DI/DXIKQLOc=; b=D9PL+HXvJS7bjkOniCqpNV9drNtiGClJAgGX4FT/dqmyJgslns0Do3DDQH2OE/Ffuz /DI/8ixpT2m9MEpqIzGvjFWWK+cIZjSKv/KI45gMc+YcDJkccqLzMceLMKjFBxgEo7oV W3Zuohl1F9secLmaHcTPyNAzFZ7gWOxvTzunE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=umzTzWZcfP0yiExHMah/W0arzACFOIq7DI/DXIKQLOc=; b=WEyY4ytfuqQ8YPePcqDvMBRQT9e7HColXyKYEndGhajWHicKdI2XLq+4kAuZjbaqsq JGwCecK08YXgBxGjB1lx64fA54H6JPoLnFih3HTLGvi2737fK0HVhk2HCo4vpV5Bq6mU e8iQMvcDOCNZQX1GE8rwSQXztFJl3XJI/u0dghDLpjrOUAyrJ8rgkyd4YYyMPWxeJlNS upLhVuN8TrTSTFxy0vpuhsZb6yH8hRGFtyl1wZ8+okIpJRoAVk0EY/2gn8bU/QsDwgVJ SKR8UKX4ocIQuGSTHOCWmrgFS+OdXneCKF83hxtGkbw0v3RY39itjwvL55z7v9FiwbTa G7+g== X-Gm-Message-State: AOAM531sYOs3DMgDpRcrC4Xu5O8fqRcoPD3uAj9WaSUh2+YISnwY7OKq C0ooqZIbJFu0VexpwdN8Gq5UIg== X-Google-Smtp-Source: ABdhPJxtxvfFfZW1bkf55O/MgtlKEV+J1nodvrXMKmcbIq9+C4VdZJe2ZuIaW0GnPRVP53bfzxRVsw== X-Received: by 2002:a05:6a00:1482:b0:49f:d9af:27dc with SMTP id v2-20020a056a00148200b0049fd9af27dcmr9310139pfu.9.1638397912453; Wed, 01 Dec 2021 14:31:52 -0800 (PST) Received: from localhost ([2620:15c:202:201:b371:4539:c97c:c751]) by smtp.gmail.com with UTF8SMTPSA id d12sm558927pgf.19.2021.12.01.14.31.51 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 01 Dec 2021 14:31:52 -0800 (PST) Date: Wed, 1 Dec 2021 14:31:51 -0800 From: Matthias Kaehlcke To: Rob Herring , Frank Rowand Cc: linux-kernel@vger.kernel.org, Krzysztof Kozlowski , Stephen Boyd , Peter Chen , linux-usb@vger.kernel.org, devicetree@vger.kernel.org, Douglas Anderson , Roger Quadros , Michal Simek , Ravi Chandra Sadineni , Bastien Nocera , Greg Kroah-Hartman , Alan Stern , Mathias Nyman , Felipe Balbi Subject: Re: [PATCH v17 2/7] of/platform: Add stubs for of_platform_device_create/destroy() Message-ID: References: <20211116200739.924401-1-mka@chromium.org> <20211116120642.v17.2.I08fd2e1c775af04f663730e9fb4d00e6bbb38541@changeid> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 22, 2021 at 09:43:57AM -0800, Matthias Kaehlcke wrote: > On Tue, Nov 16, 2021 at 12:07:34PM -0800, Matthias Kaehlcke wrote: > > Code for platform_device_create() and of_platform_device_destroy() is > > only generated if CONFIG_OF_ADDRESS=y. Add stubs to avoid unresolved > > symbols when CONFIG_OF_ADDRESS is not set. > > > > Signed-off-by: Matthias Kaehlcke > > Acked-by: Rob Herring > > Is anything preventing this patch from landing? It has Rob's ack and is > an improvement regardless of the fate of the rest of the series it is > part of. The patch was carried around unchanged in the last 10 versions > of the series, it would be nice if it could just get landed instead of > keep carrying it around :) ping Rob/Frank: is there any reason why this patch can't be landed? Thanks Matthias