From patchwork Fri Dec 4 12:54:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Vaittinen, Matti" X-Patchwork-Id: 338106 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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED autolearn=ham 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 507B5C4361A for ; Fri, 4 Dec 2020 12:55:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 202E022ADC for ; Fri, 4 Dec 2020 12:55:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730096AbgLDMyx (ORCPT ); Fri, 4 Dec 2020 07:54:53 -0500 Received: from mail-lf1-f67.google.com ([209.85.167.67]:41397 "EHLO mail-lf1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728668AbgLDMyx (ORCPT ); Fri, 4 Dec 2020 07:54:53 -0500 Received: by mail-lf1-f67.google.com with SMTP id r24so7469938lfm.8; Fri, 04 Dec 2020 04:54:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=s01ov5opcnyzf4x1O5fBO8Vti1W7Yid/d9Y3v+rRNR0=; b=f3ZHzbMKhiHPBs08M5izqoZSKcd5CY3dY6chJYz/YLs7OI8E0R0qHZjXjZNgDbdVnH Y+MNNjVqIT1kowW/PfCfSv4UBVkjPPxgVuDbdIoPJwEUmQrTg7N2XeiKZhhANZdXJKFb s29ipVsVEJpX7CYAosyQ46oR7N2GUMI8loBrTyBBPXji3nROz3UczEhmRhIlukjmLqoi HkH8XlTV41fqmMnIJgbAhHI5LKhksGvAfVbsjEw5U3vO7EG7rJf1+ogPrUVdHhbTSmFi /4J9qwwSUoFF7JYiI/Ycb8ct6LwC40b5jLrwF9IEqLjJcazL98pHIj51ddipez4sXhOw ohUQ== X-Gm-Message-State: AOAM532E4gJBCGXOrz+uU3KeKGLEH6VK158dDCM6U60/7iRyopOloxV5 Y0D6tRpF0x/W4XDXi+AjdNQ= X-Google-Smtp-Source: ABdhPJxa/3xsUbth7NczJ/xOZThJVyoTzzGXWMusLwNxVPO3DipC33rJWnSDbKhz1wjlRW7dVGsJyw== X-Received: by 2002:a19:cbd4:: with SMTP id b203mr454459lfg.506.1607086450890; Fri, 04 Dec 2020 04:54:10 -0800 (PST) Received: from localhost.localdomain (62-78-225-252.bb.dnainternet.fi. [62.78.225.252]) by smtp.gmail.com with ESMTPSA id o4sm1609553lfo.229.2020.12.04.04.54.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 04 Dec 2020 04:54:10 -0800 (PST) Date: Fri, 4 Dec 2020 14:54:04 +0200 From: Matti Vaittinen To: matti.vaittinen@fi.rohmeurope.com, mazziesaccount@gmail.com Cc: Sebastian Reichel , Linus Walleij , Krzysztof Kozlowski , Dmitry Osipenko , Cong Pham , rostokus@gmail.com, fan.chen@mediatek.com, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org Subject: [RFC PATCH v2 6/6] MFD: bd71828: differentiate bd71828 and bd71827 chargers Message-ID: References: MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org BD71828 and BD71827 charger blocks have some minor differencies. Use own name for BD71828 so that charger driver can differentiate these by device-id. Signed-off-by: Matti Vaittinen --- This patch is also provided in this RFC version only for the sake of the completeness. drivers/mfd/rohm-bd71828.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/rohm-bd71828.c b/drivers/mfd/rohm-bd71828.c index 210261d026f2..fbd6e30136d9 100644 --- a/drivers/mfd/rohm-bd71828.c +++ b/drivers/mfd/rohm-bd71828.c @@ -44,7 +44,7 @@ static struct mfd_cell bd71828_mfd_cells[] = { * BD70528 clock gate are the register address and mask. */ { .name = "bd71828-clk", }, - { .name = "bd71827-power", }, + { .name = "bd71828-power", }, { .name = "bd71828-rtc", .resources = rtc_irqs,