Received: by 2002:a25:ab43:0:0:0:0:0 with SMTP id u61csp1636ybi; Fri, 7 Jun 2019 03:01:47 -0700 (PDT) X-Google-Smtp-Source: APXvYqzi8QFc0On21P6x3sv46W/bZ87hO2ctCOQDD6RO38AJKlOt8v56zLFpvf9J37RqVtQpK0yc X-Received: by 2002:a17:902:6bc8:: with SMTP id m8mr53643284plt.227.1559901707713; Fri, 07 Jun 2019 03:01:47 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1559901707; cv=none; d=google.com; s=arc-20160816; b=UBAL0cfXL0tsHxNfJODpxMIFdyl1N9NoZVI11/y+C8nlamRbS+vl3hyNd8zQkUvhPP TFsziZE4ym6805PQXzCvEb7LuYWspYJWvYx1bjl2O708EwQQNe2pG+Tvsa4f/JlT9Qmi fnFkcsIgzDHvXUf0j3ta9eVETI9cFuwVGRfBTJjQe3tCL2ukcWr37plevVAOYasL0zq/ E/H/4tckstAWzbjHEj1u/VyjIJ90QITlR91e7f7jfcs2v7ma7dly66M1dgjMl5ub7Yc+ JE4cTW8y9j7T4rGcmj6iwI9Oh6EHsezvp0syyxnahb1FrtdoPivHKc00mrDL4TA8q6Ys u0hg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=lZ5r58GzVK7v3YhwbkBxjQkL3b3rdjV2V/R/5msTXMM=; b=U8oz7t4Wk+4Fep/OqTien4ih97x5eZOAlOiDe4zxUplk+EZ+u8bSD7Fr2IUan0UmhE kpzpvaHduf5vK1mbb7jnXUwLcGP/o80TFJEvLeyJfj2MMmcuZebOAYPG7xJvVaK0+JWj gwIvMFsoXnESXX8de6L8rav4kMBMrRW04slXQMP0waNW3PJS7vD+N83qSAaY+IrY5mzD 94Cp36PE9XlCnPxu3FrkXkwU85vWkGUqWvdcGiaixfO6hHErGpZ8OKP11xWhTowG63bk tbvO/xn1Cqgjhhigrw8kSilmbLQQvN7LqChWT0w1uFqOSp49Ca4kyOetKEKaxP0ZS8mW jF5w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n10si1356473plk.257.2019.06.07.03.01.30; Fri, 07 Jun 2019 03:01:47 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728219AbfFGJ7Q (ORCPT + 99 others); Fri, 7 Jun 2019 05:59:16 -0400 Received: from baptiste.telenet-ops.be ([195.130.132.51]:33798 "EHLO baptiste.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728004AbfFGJ7C (ORCPT ); Fri, 7 Jun 2019 05:59:02 -0400 Received: from ramsan ([84.194.111.163]) by baptiste.telenet-ops.be with bizsmtp id Mlz02000f3XaVaC01lz0mk; Fri, 07 Jun 2019 11:59:00 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1hZBeG-000412-I0; Fri, 07 Jun 2019 11:59:00 +0200 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1hZBeG-0002cf-Gv; Fri, 07 Jun 2019 11:59:00 +0200 From: Geert Uytterhoeven To: Thomas Gleixner , Jason Cooper , Marc Zyngier , Linus Walleij , Bartosz Golaszewski Cc: linux-renesas-soc@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 3/4] gpio: em: Use proper irq_chip name Date: Fri, 7 Jun 2019 11:58:57 +0200 Message-Id: <20190607095858.10028-4-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190607095858.10028-1-geert+renesas@glider.be> References: <20190607095858.10028-1-geert+renesas@glider.be> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The irq_chip .name field should contain the device's class name, not the instance's name. Signed-off-by: Geert Uytterhoeven --- Untested due to lack of hardware. .parent_device not filled in as this driver doesn't use Runtime PM. --- drivers/gpio/gpio-em.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c index b6af705a4e5f4810..6aa08d37932adf2c 100644 --- a/drivers/gpio/gpio-em.c +++ b/drivers/gpio/gpio-em.c @@ -318,7 +318,7 @@ static int em_gio_probe(struct platform_device *pdev) gpio_chip->ngpio = ngpios; irq_chip = &p->irq_chip; - irq_chip->name = name; + irq_chip->name = "gpio-em"; irq_chip->irq_mask = em_gio_irq_disable; irq_chip->irq_unmask = em_gio_irq_enable; irq_chip->irq_set_type = em_gio_irq_set_type; -- 2.17.1