All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: phy: Remove unused including <linux/version.h>
@ 2021-07-23 10:38 Jiapeng Chong
  2021-07-23 13:07 ` Andrew Lunn
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jiapeng Chong @ 2021-07-23 10:38 UTC (permalink / raw)
  To: lxu
  Cc: andrew, hkallweit1, linux, davem, kuba, netdev, linux-kernel,
	chongjiapeng

From: chongjiapeng <jiapeng.chong@linux.alibaba.com>

Eliminate the follow versioncheck warning:

./drivers/net/phy/mxl-gpy.c: 9 linux/version.h not needed.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: chongjiapeng <jiapeng.chong@linux.alibaba.com>
---
 drivers/net/phy/mxl-gpy.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/phy/mxl-gpy.c b/drivers/net/phy/mxl-gpy.c
index 12a02d8..2d5d508 100644
--- a/drivers/net/phy/mxl-gpy.c
+++ b/drivers/net/phy/mxl-gpy.c
@@ -6,7 +6,6 @@
  *
  */
 
-#include <linux/version.h>
 #include <linux/module.h>
 #include <linux/bitfield.h>
 #include <linux/phy.h>
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: phy: Remove unused including <linux/version.h>
  2021-07-23 10:38 [PATCH] net: phy: Remove unused including <linux/version.h> Jiapeng Chong
@ 2021-07-23 13:07 ` Andrew Lunn
  2021-07-23 13:10 ` Russell King (Oracle)
  2021-07-23 17:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2021-07-23 13:07 UTC (permalink / raw)
  To: Jiapeng Chong; +Cc: lxu, hkallweit1, linux, davem, kuba, netdev, linux-kernel

On Fri, Jul 23, 2021 at 06:38:27PM +0800, Jiapeng Chong wrote:
> From: chongjiapeng <jiapeng.chong@linux.alibaba.com>
> 
> Eliminate the follow versioncheck warning:
> 
> ./drivers/net/phy/mxl-gpy.c: 9 linux/version.h not needed.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: chongjiapeng <jiapeng.chong@linux.alibaba.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: phy: Remove unused including <linux/version.h>
  2021-07-23 10:38 [PATCH] net: phy: Remove unused including <linux/version.h> Jiapeng Chong
  2021-07-23 13:07 ` Andrew Lunn
@ 2021-07-23 13:10 ` Russell King (Oracle)
  2021-07-23 17:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Russell King (Oracle) @ 2021-07-23 13:10 UTC (permalink / raw)
  To: Jiapeng Chong; +Cc: lxu, andrew, hkallweit1, davem, kuba, netdev, linux-kernel

On Fri, Jul 23, 2021 at 06:38:27PM +0800, Jiapeng Chong wrote:
> From: chongjiapeng <jiapeng.chong@linux.alibaba.com>
> 
> Eliminate the follow versioncheck warning:
> 
> ./drivers/net/phy/mxl-gpy.c: 9 linux/version.h not needed.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: chongjiapeng <jiapeng.chong@linux.alibaba.com>

Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>

Thanks!

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] net: phy: Remove unused including <linux/version.h>
  2021-07-23 10:38 [PATCH] net: phy: Remove unused including <linux/version.h> Jiapeng Chong
  2021-07-23 13:07 ` Andrew Lunn
  2021-07-23 13:10 ` Russell King (Oracle)
@ 2021-07-23 17:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-07-23 17:00 UTC (permalink / raw)
  To: Jiapeng Chong
  Cc: lxu, andrew, hkallweit1, linux, davem, kuba, netdev, linux-kernel

Hello:

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

On Fri, 23 Jul 2021 18:38:27 +0800 you wrote:
> From: chongjiapeng <jiapeng.chong@linux.alibaba.com>
> 
> Eliminate the follow versioncheck warning:
> 
> ./drivers/net/phy/mxl-gpy.c: 9 linux/version.h not needed.
> 
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: chongjiapeng <jiapeng.chong@linux.alibaba.com>
> 
> [...]

Here is the summary with links:
  - net: phy: Remove unused including <linux/version.h>
    https://git.kernel.org/netdev/net-next/c/94a994d2b2b7

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



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-07-23 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-23 10:38 [PATCH] net: phy: Remove unused including <linux/version.h> Jiapeng Chong
2021-07-23 13:07 ` Andrew Lunn
2021-07-23 13:10 ` Russell King (Oracle)
2021-07-23 17:00 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.