diff mbox series

[1/6] bus: bt1-apb: Include linux/io.h

Message ID 20200528145050.5203-1-Sergey.Semin@baikalelectronics.ru (mailing list archive)
State Mainlined
Commit 1c8ceb16bcb924c8bceb638b2d6cde4c104a8114
Headers show
Series [1/6] bus: bt1-apb: Include linux/io.h | expand

Commit Message

Serge Semin May 28, 2020, 2:50 p.m. UTC
It must be included since we are using readl() method here.

Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
Cc: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>
Cc: Olof Johansson <olof@lixom.net>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: soc@kernel.org
---
 drivers/bus/bt1-apb.c | 1 +
 1 file changed, 1 insertion(+)

Comments

patchwork-bot+linux-soc@kernel.org May 28, 2020, 3:22 p.m. UTC | #1
Hello:

This series was applied to soc/soc.git (refs/heads/for-next).

On Thu, 28 May 2020 17:50:45 +0300 you wrote:
> It must be included since we are using readl() method here.
> 
> Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru>
> Cc: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru>
> Cc: Olof Johansson <olof@lixom.net>
> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> Cc: soc@kernel.org
> 
> [...]


Here is a summary with links:
  - [1/6] bus: bt1-apb: Include linux/io.h
    https://git.kernel.org/soc/soc/c/1c8ceb16bcb924c8bceb638b2d6cde4c104a8114
  - [2/6] bus: bt1-apb: Fix show/store callback identations
    https://git.kernel.org/soc/soc/c/b19dc1b79993a7e6a2c0aa1725f679bb9ae8ad89
  - [3/6] bus: bt1-apb: Use PTR_ERR_OR_ZERO to return from request-regs method
    https://git.kernel.org/soc/soc/c/75341b3d358d27f7c22e48bcd92926c49f79e9be
  - [4/6] bus: bt1-apb: Use sysfs_streq instead of strncmp
    https://git.kernel.org/soc/soc/c/b7cb430d5f11b24c1c5809ab46a098ff299b975f
  - [5/6] bus: bt1-axi: Optimize the return points in the driver
    https://git.kernel.org/soc/soc/c/7f57416f2aebe6f8b6ad105b4ca58b347fb2dd2c
  - [6/6] bus: bt1-axi: Use sysfs_streq instead of strncmp
    https://git.kernel.org/soc/soc/c/91920088536fa1cf01ceedbfb96219699d088756

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/bus/bt1-apb.c b/drivers/bus/bt1-apb.c
index abccd1dfc544..839f1add2236 100644
--- a/drivers/bus/bt1-apb.c
+++ b/drivers/bus/bt1-apb.c
@@ -15,6 +15,7 @@ 
 #include <linux/atomic.h>
 #include <linux/platform_device.h>
 #include <linux/interrupt.h>
+#include <linux/io.h>
 #include <linux/nmi.h>
 #include <linux/of.h>
 #include <linux/regmap.h>