From patchwork Mon Jan 22 13:44:41 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13525494 X-Patchwork-Delegate: geert@linux-m68k.org Received: from albert.telenet-ops.be (albert.telenet-ops.be [195.130.137.90]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8B2D53C48E for ; Mon, 22 Jan 2024 13:44:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.90 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705931092; cv=none; b=tuqcPQyXMn7X8Tzo4VCFGLJzJiW5+M+eli5dj4bCMg5n5M/30zZhLC7SDUe4JCSVRc0FeDR3FcJm6gZiq2tAeqKkNsVAJ+5354WgnqDvEBy7gVhsjjYoEBLgScXdUdvRuKzCcDhe9FUtsPnunvpbPUM5WYfxcOGZlTU4dsjTpXY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705931092; c=relaxed/simple; bh=Ws1i+RPwsccyora2CDuFVgafFOxIP4PCN3rla7F9MVw=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=SGTHEmxgeEhZxyoJ8Rjfnyvb5wT8vNF/T2eW+YN49k+1aJkvhHinNC+0OIXxcNohxA1sJSpzwWMjPJ7WmRvYRa28TuSWC0lIJUYTdXwRqFJ52OTcDEUFGzQSSXQqKTLsItJyWn7RMya75c6MNVhswNkipP6luKpEUWjcUzJVnTc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.90 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:955e:bba5:7ff4:cfb6]) by albert.telenet-ops.be with bizsmtp id dpkj2B0070ZxL6o06pkj2V; Mon, 22 Jan 2024 14:44:43 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1rRuaf-00GGvC-W1; Mon, 22 Jan 2024 14:44:43 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1rRubT-00CDuK-08; Mon, 22 Jan 2024 14:44:43 +0100 From: Geert Uytterhoeven To: Ulf Hansson Cc: linux-pm@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] pmdomain: renesas: rcar-gen4-sysc: Remove unneeded includes Date: Mon, 22 Jan 2024 14:44:41 +0100 Message-Id: <5b440f84ab8b52499ab307c84154dcbc0f41d1d7.1705931035.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 The R-Car V3U System Controller (SYSC) driver no longer needs these includes since the factoring out of the common R-Car Gen4 SYSC driver in commit e62906d6315f652b ("soc: renesas: rcar-gen4-sysc: Introduce R-Car Gen4 SYSC driver"). The R-Car S4-8 and V4H SYSC drivers never needed these includes, as these drivers always used the common R-Car Gen4 SYSC driver. Signed-off-by: Geert Uytterhoeven Reviewed-by: Niklas Söderlund --- drivers/pmdomain/renesas/r8a779a0-sysc.c | 12 ------------ drivers/pmdomain/renesas/r8a779f0-sysc.c | 12 ------------ drivers/pmdomain/renesas/r8a779g0-sysc.c | 12 ------------ 3 files changed, 36 deletions(-) diff --git a/drivers/pmdomain/renesas/r8a779a0-sysc.c b/drivers/pmdomain/renesas/r8a779a0-sysc.c index 04f1bc322ae7b671..54cdf250f7c2d143 100644 --- a/drivers/pmdomain/renesas/r8a779a0-sysc.c +++ b/drivers/pmdomain/renesas/r8a779a0-sysc.c @@ -5,19 +5,7 @@ * Copyright (C) 2020 Renesas Electronics Corp. */ -#include -#include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include #include diff --git a/drivers/pmdomain/renesas/r8a779f0-sysc.c b/drivers/pmdomain/renesas/r8a779f0-sysc.c index 5602aa6bd7ed1529..6ed13cd1cb249df5 100644 --- a/drivers/pmdomain/renesas/r8a779f0-sysc.c +++ b/drivers/pmdomain/renesas/r8a779f0-sysc.c @@ -5,19 +5,7 @@ * Copyright (C) 2021 Renesas Electronics Corp. */ -#include -#include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include #include diff --git a/drivers/pmdomain/renesas/r8a779g0-sysc.c b/drivers/pmdomain/renesas/r8a779g0-sysc.c index b932eba1b8042d8f..249cf43af45b6445 100644 --- a/drivers/pmdomain/renesas/r8a779g0-sysc.c +++ b/drivers/pmdomain/renesas/r8a779g0-sysc.c @@ -5,19 +5,7 @@ * Copyright (C) 2022 Renesas Electronics Corp. */ -#include -#include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include #include