Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp785302pxb; Sat, 20 Feb 2021 23:45:27 -0800 (PST) X-Google-Smtp-Source: ABdhPJzB+VlwJKIlub0S/cSv3drn/1Z+szGTuUiUPDve8+p4EmGD0pQg5iOcJcB0n9u8RBSjTezP X-Received: by 2002:a50:d302:: with SMTP id g2mr17037804edh.75.1613893527550; Sat, 20 Feb 2021 23:45:27 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1613893527; cv=none; d=google.com; s=arc-20160816; b=xwI4gNsfTrRDTNFSsePFEz842JV56/0TDnUwjRBS8JqIrMAHPYxT3E4Dma+8upSiI3 dZepFU61hsg5Vz3SEU6VyZwPejl52nTe40kpexnB/uPYGtumuUtUinKnZ8b/KdTtQxfN scEoqgJqeKwmjO3aNWNnrk7uXDUO7KeUM3F2hI1KXpGQqFS5z7cEdznOCKjW+481JZ1T kTB6u8wqZRilfmr4Xe9zBLbY0HBolQS9AwUJWW8ZPrfMpcT1fKzVep0pbB9e6U/vF//F vuejygarfsyjeH0xdeoTV0+r1xKqPF8vkOby5v16vGz0mbvPh17YsDXDMjl2mCAMyfiR aEyw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=aE7adhsi36epr027HTDEc1l+GiHGyri2wirQVGnvNvU=; b=1JS5x1qoM2hwpiS5ru2mLg51zznEFB16qwCnN41OMqrfC+YJzzmSbPO7OAm+kVGvGr my4et63M4WPsEaJ6gzJuagox+QNN/I+ZsA6x/JhgjADyjy9DTE5d7Vm8snoCMHPUWwoJ /b9j2CHK/6yMhw6rYEh+hEhHiSqGbkBgOmEyXSwddcGJjzhdT1uafsJXAvaT5dHtnJam bPkKDagJybHGzC36yQ1mOHdiXCM3LBDGKQEeIz9Sh89hjdp/CikW+30Svc5PPntbEAL+ F//20D+fat2uZ0QhhytQWilFTu74yutWKyZwwFNtjSk02EaK0+WIoXf5Gkdn8VlaXZml nvGA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id j21si9388273edh.58.2021.02.20.23.44.49; Sat, 20 Feb 2021 23:45:27 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229786AbhBUHnE (ORCPT + 99 others); Sun, 21 Feb 2021 02:43:04 -0500 Received: from smtp07.smtpout.orange.fr ([80.12.242.129]:25467 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229661AbhBUHnB (ORCPT ); Sun, 21 Feb 2021 02:43:01 -0500 Received: from localhost.localdomain ([90.126.17.6]) by mwinf5d65 with ME id XjhJ2400507rLVE03jhJqX; Sun, 21 Feb 2021 08:41:19 +0100 X-ME-Helo: localhost.localdomain X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sun, 21 Feb 2021 08:41:19 +0100 X-ME-IP: 90.126.17.6 From: Christophe JAILLET To: balbi@kernel.org, gregkh@linuxfoundation.org, krzk@kernel.org, nathan@kernel.org, ndesaulniers@google.com, arnd@arndb.de, gustavoars@kernel.org, linux-arm-kernel@lists.infradead.org Cc: linux-usb@vger.kernel.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH 1/2] usb: gadget: s3c: Fix incorrect resources releasing Date: Sun, 21 Feb 2021 08:41:17 +0100 Message-Id: <20210221074117.937965-1-christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since commit fe0f8e5c9ba8 ("usb: gadget: s3c: use platform resources"), 'request_mem_region()' and 'ioremap()' are no more used, so they don't need to be undone in the error handling path of the probe and in the removre function. Remove these calls and the unneeded 'rsrc_start' and 'rsrc_len' global variables. Fixes: fe0f8e5c9ba8 ("usb: gadget: s3c: use platform resources") Signed-off-by: Christophe JAILLET --- the 'err' label is used only to reduce the diff size of this patch. It is removed in the following patch. checkpatch reports: WARNING: Unknown commit id 'fe0f8e5c9ba8', maybe rebased or not pulled? According to https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/drivers/usb/gadget/udc/s3c2410_udc.c?id=188db4435ac64f0918def7ba0593d408700ecc4b the commit ID looks correct to me. Maybe something should be tweaked somewhere before applying, but I don't know what! --- drivers/usb/gadget/udc/s3c2410_udc.c | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/drivers/usb/gadget/udc/s3c2410_udc.c b/drivers/usb/gadget/udc/s3c2410_udc.c index f1ea51476add..3fc436286bad 100644 --- a/drivers/usb/gadget/udc/s3c2410_udc.c +++ b/drivers/usb/gadget/udc/s3c2410_udc.c @@ -54,8 +54,6 @@ static struct clk *udc_clock; static struct clk *usb_bus_clock; static void __iomem *base_addr; static int irq_usbd; -static u64 rsrc_start; -static u64 rsrc_len; static struct dentry *s3c2410_udc_debugfs_root; static inline u32 udc_read(u32 reg) @@ -1775,7 +1773,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev) base_addr = devm_platform_ioremap_resource(pdev, 0); if (!base_addr) { retval = -ENOMEM; - goto err_mem; + goto err; } the_controller = udc; @@ -1793,7 +1791,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev) if (retval != 0) { dev_err(dev, "cannot get irq %i, err %d\n", irq_usbd, retval); retval = -EBUSY; - goto err_map; + goto err; } dev_dbg(dev, "got irq %i\n", irq_usbd); @@ -1864,10 +1862,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev) gpio_free(udc_info->vbus_pin); err_int: free_irq(irq_usbd, udc); -err_map: - iounmap(base_addr); -err_mem: - release_mem_region(rsrc_start, rsrc_len); +err: return retval; } @@ -1899,9 +1894,6 @@ static int s3c2410_udc_remove(struct platform_device *pdev) free_irq(irq_usbd, udc); - iounmap(base_addr); - release_mem_region(rsrc_start, rsrc_len); - if (!IS_ERR(udc_clock) && udc_clock != NULL) { clk_disable_unprepare(udc_clock); clk_put(udc_clock); -- 2.27.0