From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Cc: Ryan Chen <ryan_chen@aspeedtech.com>,
Chia-Wei Wang <chiawei_wang@aspeedtech.com>,
Aspeed BMC SW team <BMC-SW@aspeedtech.com>,
Joel Stanley <joel@jms.id.au>,
Michal Simek <michal.simek@amd.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Simon Glass <sjg@chromium.org>,
Thierry Reding <treding@nvidia.com>,
Svyatoslav Ryhel <clamor95@gmail.com>,
Patrice Chotard <patrice.chotard@foss.st.com>,
Stefan Bosch <stefan_b@posteo.net>,
Eugen Hristev <eugen.hristev@collabora.com>,
Caleb Connolly <caleb.connolly@linaro.org>,
Igor Prusov <ivprusov@salutedevices.com>,
Weijie Gao <weijie.gao@mediatek.com>,
Johan Jonker <jbx6244@gmail.com>
Subject: [PATCH 53/81] pwm: Remove <common.h> and add needed includes
Date: Wed, 1 May 2024 19:31:10 -0600 [thread overview]
Message-ID: <20240502013138.2383421-53-trini@konsulko.com> (raw)
In-Reply-To: <20240502013138.2383421-1-trini@konsulko.com>
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
Cc: Tom Rini <trini@konsulko.com>
Cc: Ryan Chen <ryan_chen@aspeedtech.com>
Cc: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
Cc: Aspeed BMC SW team <BMC-SW@aspeedtech.com>
Cc: Joel Stanley <joel@jms.id.au>
Cc: Michal Simek <michal.simek@amd.com>
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Thierry Reding <treding@nvidia.com>
Cc: Svyatoslav Ryhel <clamor95@gmail.com>
Cc: Patrice Chotard <patrice.chotard@foss.st.com>
Cc: Stefan Bosch <stefan_b@posteo.net>
Cc: Eugen Hristev <eugen.hristev@collabora.com>
Cc: Caleb Connolly <caleb.connolly@linaro.org>
Cc: Igor Prusov <ivprusov@salutedevices.com>
Cc: Weijie Gao <weijie.gao@mediatek.com>
Cc: Johan Jonker <jbx6244@gmail.com>
---
drivers/pwm/cros_ec_pwm.c | 1 -
drivers/pwm/exynos_pwm.c | 1 -
drivers/pwm/pwm-aspeed.c | 1 -
drivers/pwm/pwm-at91.c | 1 -
drivers/pwm/pwm-cadence-ttc.c | 1 -
drivers/pwm/pwm-imx.c | 1 -
drivers/pwm/pwm-meson.c | 1 -
drivers/pwm/pwm-mtk.c | 1 -
drivers/pwm/pwm-sifive.c | 1 -
drivers/pwm/pwm-ti-ehrpwm.c | 1 -
drivers/pwm/pwm-uclass.c | 1 -
drivers/pwm/rk_pwm.c | 1 -
drivers/pwm/sandbox_pwm.c | 1 -
drivers/pwm/sunxi_pwm.c | 1 -
drivers/pwm/tegra_pwm.c | 1 -
15 files changed, 15 deletions(-)
diff --git a/drivers/pwm/cros_ec_pwm.c b/drivers/pwm/cros_ec_pwm.c
index 4a39c319aa2a..b89f00f151b0 100644
--- a/drivers/pwm/cros_ec_pwm.c
+++ b/drivers/pwm/cros_ec_pwm.c
@@ -1,6 +1,5 @@
// SPDX-License-Identifier: GPL-2.0+
-#include <common.h>
#include <cros_ec.h>
#include <dm.h>
#include <errno.h>
diff --git a/drivers/pwm/exynos_pwm.c b/drivers/pwm/exynos_pwm.c
index 609025d680d2..5ded60978f47 100644
--- a/drivers/pwm/exynos_pwm.c
+++ b/drivers/pwm/exynos_pwm.c
@@ -3,7 +3,6 @@
* Copyright 2016 Google Inc.
*/
-#include <common.h>
#include <dm.h>
#include <log.h>
#include <pwm.h>
diff --git a/drivers/pwm/pwm-aspeed.c b/drivers/pwm/pwm-aspeed.c
index b03472d2345c..ebc9d9a89752 100644
--- a/drivers/pwm/pwm-aspeed.c
+++ b/drivers/pwm/pwm-aspeed.c
@@ -38,7 +38,6 @@
* This improvement can disable/enable through PWM_ASPEED_CTRL_DUTY_SYNC_DISABLE.
*/
-#include <common.h>
#include <div64.h>
#include <dm.h>
#include <pwm.h>
diff --git a/drivers/pwm/pwm-at91.c b/drivers/pwm/pwm-at91.c
index 3ff1fb6d5c30..ffc37180eb42 100644
--- a/drivers/pwm/pwm-at91.c
+++ b/drivers/pwm/pwm-at91.c
@@ -9,7 +9,6 @@
* Based on drivers/pwm/pwm-atmel.c from Linux.
*/
#include <clk.h>
-#include <common.h>
#include <div64.h>
#include <dm.h>
#include <linux/bitops.h>
diff --git a/drivers/pwm/pwm-cadence-ttc.c b/drivers/pwm/pwm-cadence-ttc.c
index d9f6736a7aee..767628833bc0 100644
--- a/drivers/pwm/pwm-cadence-ttc.c
+++ b/drivers/pwm/pwm-cadence-ttc.c
@@ -6,7 +6,6 @@
#define LOG_CATEGORY UCLASS_PWM
#include <clk.h>
-#include <common.h>
#include <div64.h>
#include <dm.h>
#include <log.h>
diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c
index 8fbb40cc2767..320ea7c4239a 100644
--- a/drivers/pwm/pwm-imx.c
+++ b/drivers/pwm/pwm-imx.c
@@ -6,7 +6,6 @@
* Basic support for the pwm module on imx6.
*/
-#include <common.h>
#include <div64.h>
#include <dm.h>
#include <log.h>
diff --git a/drivers/pwm/pwm-meson.c b/drivers/pwm/pwm-meson.c
index 60959720dac8..c2597d8b6698 100644
--- a/drivers/pwm/pwm-meson.c
+++ b/drivers/pwm/pwm-meson.c
@@ -16,7 +16,6 @@
* current period to complete first).
*/
-#include <common.h>
#include <clk.h>
#include <div64.h>
#include <dm.h>
diff --git a/drivers/pwm/pwm-mtk.c b/drivers/pwm/pwm-mtk.c
index ad845ed9662e..9776a41ff48e 100644
--- a/drivers/pwm/pwm-mtk.c
+++ b/drivers/pwm/pwm-mtk.c
@@ -5,7 +5,6 @@
* Author: Sam Shih <sam.shih@mediatek.com>
*/
-#include <common.h>
#include <clk.h>
#include <dm.h>
#include <pwm.h>
diff --git a/drivers/pwm/pwm-sifive.c b/drivers/pwm/pwm-sifive.c
index b9813a3b6bbe..e9777c71f5e0 100644
--- a/drivers/pwm/pwm-sifive.c
+++ b/drivers/pwm/pwm-sifive.c
@@ -12,7 +12,6 @@
* - The hardware generates only inverted output.
*/
-#include <common.h>
#include <clk.h>
#include <div64.h>
#include <dm.h>
diff --git a/drivers/pwm/pwm-ti-ehrpwm.c b/drivers/pwm/pwm-ti-ehrpwm.c
index fefa3c65ec45..563109ef0f80 100644
--- a/drivers/pwm/pwm-ti-ehrpwm.c
+++ b/drivers/pwm/pwm-ti-ehrpwm.c
@@ -7,7 +7,6 @@
* Based on Linux kernel drivers/pwm/pwm-tiehrpwm.c
*/
-#include <common.h>
#include <clk.h>
#include <div64.h>
#include <dm.h>
diff --git a/drivers/pwm/pwm-uclass.c b/drivers/pwm/pwm-uclass.c
index 648d0757ba62..6543db1d623d 100644
--- a/drivers/pwm/pwm-uclass.c
+++ b/drivers/pwm/pwm-uclass.c
@@ -6,7 +6,6 @@
#define LOG_CATEGORY UCLASS_PWM
-#include <common.h>
#include <dm.h>
#include <pwm.h>
diff --git a/drivers/pwm/rk_pwm.c b/drivers/pwm/rk_pwm.c
index 1858d5973386..0a64eb01dc2b 100644
--- a/drivers/pwm/rk_pwm.c
+++ b/drivers/pwm/rk_pwm.c
@@ -4,7 +4,6 @@
* Written by Simon Glass <sjg@chromium.org>
*/
-#include <common.h>
#include <clk.h>
#include <div64.h>
#include <dm.h>
diff --git a/drivers/pwm/sandbox_pwm.c b/drivers/pwm/sandbox_pwm.c
index 4df15f0a2e8f..0d798609ddaf 100644
--- a/drivers/pwm/sandbox_pwm.c
+++ b/drivers/pwm/sandbox_pwm.c
@@ -4,7 +4,6 @@
* Written by Simon Glass <sjg@chromium.org>
*/
-#include <common.h>
#include <dm.h>
#include <errno.h>
#include <pwm.h>
diff --git a/drivers/pwm/sunxi_pwm.c b/drivers/pwm/sunxi_pwm.c
index bb1bec05ec34..2140a05b6796 100644
--- a/drivers/pwm/sunxi_pwm.c
+++ b/drivers/pwm/sunxi_pwm.c
@@ -3,7 +3,6 @@
* Copyright (c) 2017-2018 Vasily Khoruzhick <anarsoul@gmail.com>
*/
-#include <common.h>
#include <div64.h>
#include <dm.h>
#include <log.h>
diff --git a/drivers/pwm/tegra_pwm.c b/drivers/pwm/tegra_pwm.c
index 87034706060c..e3f1417f2ad0 100644
--- a/drivers/pwm/tegra_pwm.c
+++ b/drivers/pwm/tegra_pwm.c
@@ -3,7 +3,6 @@
* Copyright 2016 Google Inc.
*/
-#include <common.h>
#include <dm.h>
#include <log.h>
#include <pwm.h>
--
2.34.1
next prev parent reply other threads:[~2024-05-02 1:38 UTC|newest]
Thread overview: 136+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20240502013146epcas1p3dce70115dbffcbd41eb7f657d6188d2e@epcas1p3.samsung.com>
2024-05-02 1:30 ` [PATCH 01/81] mmc: Migrate MMC_SUPPORTS_TUNING to Kconfig Tom Rini
2024-05-02 1:30 ` [PATCH 02/81] arm: aspeed: Add missing <linux/types.h> Tom Rini
2024-05-02 1:30 ` [PATCH 03/81] arm: sunxi: " Tom Rini
2024-05-02 1:30 ` [PATCH 04/81] arm: nexell: " Tom Rini
2024-05-09 8:54 ` Stefan Bosch
2024-05-02 1:30 ` [PATCH 05/81] arm: socfpga: " Tom Rini
2024-05-02 1:30 ` [PATCH 06/81] x86: " Tom Rini
2024-05-02 1:30 ` [PATCH 07/81] include: " Tom Rini
2024-05-02 1:30 ` [PATCH 08/81] fsl_ifc.h: Add <asm/ppc.h> Tom Rini
2024-05-02 1:30 ` [PATCH 09/81] include/linux/compat.h: Add <time.h> Tom Rini
2024-05-02 1:30 ` [PATCH 10/81] adc: Remove <common.h> and add needed includes Tom Rini
2024-05-02 1:30 ` [PATCH 11/81] ata: " Tom Rini
2024-05-02 3:32 ` Tony Dinh
2024-05-02 1:30 ` [PATCH 12/81] axi: " Tom Rini
2024-05-02 1:30 ` [PATCH 13/81] bios_emulator: " Tom Rini
2024-05-02 1:30 ` [PATCH 14/81] block: " Tom Rini
2024-05-02 7:25 ` Mattijs Korpershoek
2024-05-10 0:40 ` Kever Yang
2024-05-02 1:30 ` [PATCH 15/81] bootcount: " Tom Rini
2024-05-02 1:30 ` [PATCH 16/81] bus: " Tom Rini
2024-05-02 1:30 ` [PATCH 17/81] button: " Tom Rini
2024-05-02 1:30 ` [PATCH 18/81] cache: " Tom Rini
2024-05-02 1:30 ` [PATCH 19/81] clk: " Tom Rini
2024-05-09 9:07 ` Stefan Bosch
2024-05-10 0:40 ` Kever Yang
2024-05-02 1:30 ` [PATCH 20/81] core: " Tom Rini
2024-05-02 1:30 ` [PATCH 21/81] cpu: " Tom Rini
2024-05-02 1:30 ` [PATCH 22/81] crypto: " Tom Rini
2024-05-02 1:30 ` [PATCH 23/81] ddr: " Tom Rini
2024-05-02 1:30 ` [PATCH 24/81] demo: " Tom Rini
2024-05-02 1:30 ` [PATCH 25/81] dfu: " Tom Rini
2024-05-02 7:28 ` Mattijs Korpershoek
2024-05-02 14:45 ` Tom Rini
2024-05-02 1:30 ` [PATCH 26/81] dma: " Tom Rini
2024-05-02 1:30 ` [PATCH 27/81] extcon: " Tom Rini
2024-05-02 1:30 ` [PATCH 28/81] fastboot: " Tom Rini
2024-05-02 7:29 ` Mattijs Korpershoek
2024-05-02 1:30 ` [PATCH 29/81] firmware: " Tom Rini
2024-05-07 7:37 ` Ilias Apalodimas
2024-05-02 1:30 ` [PATCH 30/81] fpga: " Tom Rini
2024-05-02 1:30 ` [PATCH 31/81] fuzz: " Tom Rini
2024-05-02 1:30 ` [PATCH 32/81] fwu-mdata: " Tom Rini
2024-05-02 13:15 ` Jassi Brar
2024-05-07 7:39 ` Ilias Apalodimas
2024-05-02 1:30 ` [PATCH 33/81] gpio: " Tom Rini
2024-05-02 11:10 ` Peter Robinson
2024-05-03 3:58 ` Heiko Schocher
2024-05-09 9:09 ` Stefan Bosch
2024-05-10 0:40 ` Kever Yang
2024-05-02 1:30 ` [PATCH 34/81] hwspinlock: " Tom Rini
2024-05-02 1:30 ` [PATCH 35/81] i2c: " Tom Rini
2024-05-03 3:58 ` Heiko Schocher
2024-05-09 9:09 ` Stefan Bosch
2024-05-02 1:30 ` [PATCH 36/81] input: " Tom Rini
2024-05-02 1:30 ` [PATCH 37/81] iommu: " Tom Rini
2024-05-02 1:30 ` [PATCH 38/81] led: " Tom Rini
2024-05-02 1:30 ` [PATCH 39/81] mailbox: " Tom Rini
2024-05-02 1:30 ` [PATCH 40/81] memory: " Tom Rini
2024-05-02 1:30 ` [PATCH 41/81] misc: " Tom Rini
2024-05-10 0:40 ` Kever Yang
2024-05-02 1:30 ` [PATCH 42/81] mmc: " Tom Rini
2024-05-02 11:10 ` Peter Robinson
2024-05-03 2:31 ` Jaehoon Chung
2024-05-10 0:41 ` Kever Yang
2024-05-02 1:31 ` [PATCH 43/81] mtd: " Tom Rini
2024-05-03 4:21 ` William Zhang
2024-05-02 1:31 ` [PATCH 44/81] mux: " Tom Rini
2024-05-02 1:31 ` [PATCH 45/81] net: " Tom Rini
2024-05-10 0:41 ` Kever Yang
2024-05-02 1:31 ` [PATCH 46/81] nvme: " Tom Rini
2024-05-02 1:31 ` [PATCH 47/81] pch: " Tom Rini
2024-05-02 1:31 ` [PATCH 48/81] pci: " Tom Rini
2024-05-03 3:59 ` Heiko Schocher
2024-05-10 0:42 ` Kever Yang
2024-05-02 1:31 ` [PATCH 49/81] pci_endpoint: " Tom Rini
2024-05-02 1:31 ` [PATCH 50/81] phy: " Tom Rini
2024-05-09 9:10 ` Stefan Bosch
2024-05-10 0:42 ` Kever Yang
2024-05-02 1:31 ` [PATCH 51/81] pinctrl: " Tom Rini
2024-05-02 11:11 ` Peter Robinson
2024-05-09 9:10 ` Stefan Bosch
2024-05-10 0:42 ` Kever Yang
2024-05-02 1:31 ` [PATCH 52/81] power: " Tom Rini
2024-05-10 0:43 ` Kever Yang
2024-05-02 1:31 ` Tom Rini [this message]
2024-05-09 9:11 ` [PATCH 53/81] pwm: " Stefan Bosch
2024-05-02 1:31 ` [PATCH 54/81] ram: " Tom Rini
2024-05-10 0:43 ` Kever Yang
2024-05-02 1:31 ` [PATCH 55/81] reboot-mode: " Tom Rini
2024-05-02 1:31 ` [PATCH 56/81] remoteproc: " Tom Rini
2024-05-02 1:31 ` [PATCH 57/81] reset: " Tom Rini
2024-05-10 0:43 ` Kever Yang
2024-05-02 1:31 ` [PATCH 58/81] rtc: " Tom Rini
2024-05-02 1:31 ` [PATCH 59/81] scsi: " Tom Rini
2024-05-02 1:31 ` [PATCH 60/81] serial: " Tom Rini
2024-05-02 11:11 ` Peter Robinson
2024-05-09 9:12 ` Stefan Bosch
2024-05-02 1:31 ` [PATCH 61/81] sm: " Tom Rini
2024-05-02 1:31 ` [PATCH 62/81] smem: " Tom Rini
2024-05-02 1:31 ` [PATCH 63/81] soc: " Tom Rini
2024-05-03 14:44 ` Bryan Brattlof
2024-05-02 1:31 ` [PATCH 64/81] sound: " Tom Rini
2024-05-10 0:44 ` Kever Yang
2024-05-02 1:31 ` [PATCH 65/81] spi: " Tom Rini
2024-05-03 4:25 ` William Zhang
2024-05-03 5:47 ` Cédric Le Goater
2024-05-02 1:31 ` [PATCH 66/81] spmi: " Tom Rini
2024-05-02 1:31 ` [PATCH 67/81] sysinfo: " Tom Rini
2024-05-02 1:31 ` [PATCH 68/81] sysreset: " Tom Rini
2024-05-10 0:44 ` Kever Yang
2024-05-02 1:31 ` [PATCH 69/81] thermal: " Tom Rini
2024-05-02 1:31 ` [PATCH 70/81] timer: " Tom Rini
2024-05-10 0:44 ` Kever Yang
2024-05-02 1:31 ` [PATCH 71/81] tpm: " Tom Rini
2024-05-07 7:36 ` Ilias Apalodimas
2024-05-02 1:31 ` [PATCH 72/81] ufs: " Tom Rini
2024-05-02 1:31 ` [PATCH 73/81] usb: " Tom Rini
2024-05-02 7:40 ` Mattijs Korpershoek
2024-05-02 14:51 ` Tom Rini
2024-05-03 7:20 ` Mattijs Korpershoek
2024-05-04 17:09 ` E Shattow
2024-05-04 18:33 ` Tom Rini
2024-05-02 1:31 ` [PATCH 74/81] video: " Tom Rini
2024-05-02 11:14 ` Peter Robinson
2024-05-09 9:13 ` Stefan Bosch
2024-05-10 0:45 ` Kever Yang
2024-05-02 1:31 ` [PATCH 75/81] virtio: " Tom Rini
2024-05-02 1:31 ` [PATCH 76/81] w1: " Tom Rini
2024-05-02 1:31 ` [PATCH 77/81] w1-eeprom: " Tom Rini
2024-05-02 1:31 ` [PATCH 78/81] watchdog: " Tom Rini
2024-05-02 6:49 ` Angelo Dureghello
2024-05-02 1:31 ` [PATCH 79/81] xen: " Tom Rini
2024-05-02 1:31 ` [PATCH 80/81] api: " Tom Rini
2024-05-02 1:31 ` [PATCH 81/81] common.h: Remove this file and all references Tom Rini
2024-05-03 2:29 ` [PATCH 01/81] mmc: Migrate MMC_SUPPORTS_TUNING to Kconfig Jaehoon Chung
2024-05-07 14:02 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240502013138.2383421-53-trini@konsulko.com \
--to=trini@konsulko.com \
--cc=BMC-SW@aspeedtech.com \
--cc=caleb.connolly@linaro.org \
--cc=chiawei_wang@aspeedtech.com \
--cc=clamor95@gmail.com \
--cc=eugen.hristev@collabora.com \
--cc=ivprusov@salutedevices.com \
--cc=jbx6244@gmail.com \
--cc=joel@jms.id.au \
--cc=michal.simek@amd.com \
--cc=neil.armstrong@linaro.org \
--cc=patrice.chotard@foss.st.com \
--cc=ryan_chen@aspeedtech.com \
--cc=sjg@chromium.org \
--cc=stefan_b@posteo.net \
--cc=treding@nvidia.com \
--cc=u-boot@lists.denx.de \
--cc=weijie.gao@mediatek.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox