diff mbox series

[1/1] fjes: Use DEFINE_RES_MEM() and DEFINE_RES_IRQ() to simplify code

Message ID 20210601062736.9777-1-thunder.leizhen@huawei.com
State New
Headers show
Series [1/1] fjes: Use DEFINE_RES_MEM() and DEFINE_RES_IRQ() to simplify code | expand

Commit Message

Zhen Lei June 1, 2021, 6:27 a.m. UTC
No functional change.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>

---
 drivers/net/fjes/fjes_main.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

-- 
2.26.0.106.g9fadedd

Comments

patchwork-bot+netdevbpf@kernel.org June 1, 2021, 10:30 p.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Tue, 1 Jun 2021 14:27:36 +0800 you wrote:
> No functional change.

> 

> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>

> ---

>  drivers/net/fjes/fjes_main.c | 12 ++----------

>  1 file changed, 2 insertions(+), 10 deletions(-)


Here is the summary with links:
  - [1/1] fjes: Use DEFINE_RES_MEM() and DEFINE_RES_IRQ() to simplify code
    https://git.kernel.org/netdev/net-next/c/d153ef5ce7db

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/net/fjes/fjes_main.c b/drivers/net/fjes/fjes_main.c
index 466622664424dcd..d098b1fcf0067b1 100644
--- a/drivers/net/fjes/fjes_main.c
+++ b/drivers/net/fjes/fjes_main.c
@@ -90,16 +90,8 @@  static struct platform_driver fjes_driver = {
 };
 
 static struct resource fjes_resource[] = {
-	{
-		.flags = IORESOURCE_MEM,
-		.start = 0,
-		.end = 0,
-	},
-	{
-		.flags = IORESOURCE_IRQ,
-		.start = 0,
-		.end = 0,
-	},
+	DEFINE_RES_MEM(0, 1),
+	DEFINE_RES_IRQ(0)
 };
 
 static bool is_extended_socket_device(struct acpi_device *device)