* [PATCH net-next 00/10] Remove unnecessary (void*) conversions
@ 2023-06-28 2:41 wuych
2023-06-28 7:41 ` Hao Lan
0 siblings, 1 reply; 6+ messages in thread
From: wuych @ 2023-06-28 2:41 UTC (permalink / raw)
To: andrew, f.fainelli, olteanv, davem, edumazet, kuba, pabeni,
irusskikh, yisen.zhuang, salil.mehta, jesse.brandeburg,
anthony.l.nguyen, steve.glendinning, iyappan, keyur, quan,
hkallweit1, linux, mostrows, xeb, qiang.zhao
Cc: netdev, kernel-janitors, linux-kernel, linux, intel-wired-lan,
yangyingliang, yunchuan, linuxppc-dev, ansuelsmth
Remove (void*) conversions under "drivers/net" directory.
According to the suggestion[1] of Jakub Kicinski, send these patches
in series of 10.
wuych (10):
net: dsa: ar9331: remove unnecessary (void*) conversions
net: dsa: qca8k: remove unnecessary (void*) conversions
atlantic:hw_atl2:hw_atl2_utils_fw: Remove unnecessary (void*)
conversions
ice: Remove unnecessary (void*) conversions
ethernet: smsc: remove unnecessary (void*) conversions
net: hns: Remove unnecessary (void*) conversions
net: hns3: remove unnecessary (void*) conversions
net: mdio: Remove unnecessary (void*) conversions
net: ppp: remove unnecessary (void*) conversions
net: wan: Remove unnecessary (void*) conversions
drivers/net/dsa/qca/ar9331.c | 16 ++++++++--------
drivers/net/dsa/qca/qca8k-8xxx.c | 2 +-
drivers/net/dsa/qca/qca8k-common.c | 6 +++---
.../aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.c | 2 +-
.../net/ethernet/hisilicon/hns3/hns3_ethtool.c | 2 +-
drivers/net/ethernet/hisilicon/hns_mdio.c | 10 +++++-----
drivers/net/ethernet/intel/ice/ice_main.c | 4 ++--
drivers/net/ethernet/smsc/smsc911x.c | 4 ++--
drivers/net/ethernet/smsc/smsc9420.c | 4 ++--
drivers/net/mdio/mdio-xgene.c | 8 ++++----
drivers/net/ppp/pppoe.c | 4 ++--
drivers/net/ppp/pptp.c | 4 ++--
drivers/net/wan/fsl_ucc_hdlc.c | 2 +-
13 files changed, 34 insertions(+), 34 deletions(-)
[1] https://lore.kernel.org/all/20230518194627.4f9a6b04@kernel.org/
--
2.30.2
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH net-next 00/10] Remove unnecessary (void*) conversions
2023-06-28 2:41 [PATCH net-next 00/10] Remove unnecessary (void*) conversions wuych
@ 2023-06-28 7:41 ` Hao Lan
2023-06-28 9:01 ` yunchuan
0 siblings, 1 reply; 6+ messages in thread
From: Hao Lan @ 2023-06-28 7:41 UTC (permalink / raw)
To: wuych, andrew, f.fainelli, olteanv, davem, edumazet, kuba, pabeni,
irusskikh, yisen.zhuang, salil.mehta, jesse.brandeburg,
anthony.l.nguyen, steve.glendinning, iyappan, keyur, quan,
hkallweit1, linux, mostrows, xeb, qiang.zhao
Cc: netdev, kernel-janitors, linux-kernel, linux, intel-wired-lan,
yangyingliang, linuxppc-dev, ansuelsmth
On 2023/6/28 10:41, wuych wrote:
> Remove (void*) conversions under "drivers/net" directory.
> According to the suggestion[1] of Jakub Kicinski, send these patches
> in series of 10.
>
> wuych (10):
> net: dsa: ar9331: remove unnecessary (void*) conversions
> net: dsa: qca8k: remove unnecessary (void*) conversions
> atlantic:hw_atl2:hw_atl2_utils_fw: Remove unnecessary (void*)
> conversions
> ice: Remove unnecessary (void*) conversions
> ethernet: smsc: remove unnecessary (void*) conversions
> net: hns: Remove unnecessary (void*) conversions
> net: hns3: remove unnecessary (void*) conversions
> net: mdio: Remove unnecessary (void*) conversions
> net: ppp: remove unnecessary (void*) conversions
> net: wan: Remove unnecessary (void*) conversions
>
Hi wuych,
Thank you for your patch.
The following two patches conflict with the net-next branch, and others have modified the related code.
Please compile your series in net and net-next branch and upload your series again.
net: dsa: ar9331: remove unnecessary (void*) conversions
net: dsa: qca8k: remove unnecessary (void*) conversions
Yours,
Hao Lan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next 00/10] Remove unnecessary (void*) conversions
2023-06-28 7:41 ` Hao Lan
@ 2023-06-28 9:01 ` yunchuan
2023-06-28 14:37 ` Andrew Lunn
0 siblings, 1 reply; 6+ messages in thread
From: yunchuan @ 2023-06-28 9:01 UTC (permalink / raw)
To: Hao Lan, andrew, f.fainelli, olteanv, davem, edumazet, kuba,
pabeni, irusskikh, yisen.zhuang, salil.mehta, jesse.brandeburg,
anthony.l.nguyen, steve.glendinning, iyappan, keyur, quan,
hkallweit1, linux, mostrows, xeb, qiang.zhao
Cc: netdev, kernel-janitors, linux-kernel, linux, intel-wired-lan,
yangyingliang, linuxppc-dev, ansuelsmth
On 2023/6/28 15:41, Hao Lan wrote:
>
> On 2023/6/28 10:41, wuych wrote:
>> Remove (void*) conversions under "drivers/net" directory.
>> According to the suggestion[1] of Jakub Kicinski, send these patches
>> in series of 10.
>>
>> wuych (10):
>> net: dsa: ar9331: remove unnecessary (void*) conversions
>> net: dsa: qca8k: remove unnecessary (void*) conversions
>> atlantic:hw_atl2:hw_atl2_utils_fw: Remove unnecessary (void*)
>> conversions
>> ice: Remove unnecessary (void*) conversions
>> ethernet: smsc: remove unnecessary (void*) conversions
>> net: hns: Remove unnecessary (void*) conversions
>> net: hns3: remove unnecessary (void*) conversions
>> net: mdio: Remove unnecessary (void*) conversions
>> net: ppp: remove unnecessary (void*) conversions
>> net: wan: Remove unnecessary (void*) conversions
>>
> Hi wuych,
> Thank you for your patch.
> The following two patches conflict with the net-next branch, and others have modified the related code.
> Please compile your series in net and net-next branch and upload your series again.
> net: dsa: ar9331: remove unnecessary (void*) conversions
> net: dsa: qca8k: remove unnecessary (void*) conversions
Hi, Hao Lan,
Sorry for that, I just compiled these patches in the mainline branch.
I know now, it's also necessary to compile patches in net and net-next
branch.
Thanks for your reply!
wuych
>
> Yours,
> Hao Lan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next 00/10] Remove unnecessary (void*) conversions
2023-06-28 9:01 ` yunchuan
@ 2023-06-28 14:37 ` Andrew Lunn
2023-06-28 14:39 ` Andrew Lunn
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2023-06-28 14:37 UTC (permalink / raw)
To: yunchuan
Cc: irusskikh, kernel-janitors, linux, edumazet, iyappan,
anthony.l.nguyen, quan, Hao Lan, qiang.zhao, f.fainelli,
jesse.brandeburg, xeb, intel-wired-lan, yangyingliang, kuba,
pabeni, yisen.zhuang, ansuelsmth, steve.glendinning, keyur,
mostrows, salil.mehta, netdev, linux-kernel, linux, olteanv,
linuxppc-dev, davem, hkallweit1
> Hi, Hao Lan,
>
> Sorry for that, I just compiled these patches in the mainline branch.
> I know now, it's also necessary to compile patches in net and net-next
> branch.
> Thanks for your reply!
net-next is also closed at the moment due to the merge window. Please
wait two weeks before reposting, by which time net-next will be open
again.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next 00/10] Remove unnecessary (void*) conversions
2023-06-28 14:37 ` Andrew Lunn
@ 2023-06-28 14:39 ` Andrew Lunn
2023-06-29 2:10 ` yunchuan
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2023-06-28 14:39 UTC (permalink / raw)
To: yunchuan
Cc: irusskikh, kernel-janitors, linux, edumazet, iyappan,
anthony.l.nguyen, quan, Hao Lan, qiang.zhao, f.fainelli,
jesse.brandeburg, xeb, intel-wired-lan, yangyingliang, kuba,
pabeni, yisen.zhuang, ansuelsmth, steve.glendinning, keyur,
mostrows, salil.mehta, netdev, linux-kernel, linux, olteanv,
linuxppc-dev, davem, hkallweit1
On Wed, Jun 28, 2023 at 04:37:43PM +0200, Andrew Lunn wrote:
> > Hi, Hao Lan,
> >
> > Sorry for that, I just compiled these patches in the mainline branch.
> > I know now, it's also necessary to compile patches in net and net-next
> > branch.
> > Thanks for your reply!
>
> net-next is also closed at the moment due to the merge window. Please
> wait two weeks before reposting, by which time net-next will be open
> again.
Your email threading also seems to be broken, there is no
threading. That might cause pathworks an issue.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH net-next 00/10] Remove unnecessary (void*) conversions
2023-06-28 14:39 ` Andrew Lunn
@ 2023-06-29 2:10 ` yunchuan
0 siblings, 0 replies; 6+ messages in thread
From: yunchuan @ 2023-06-29 2:10 UTC (permalink / raw)
To: Andrew Lunn
Cc: irusskikh, kernel-janitors, linux, edumazet, iyappan,
anthony.l.nguyen, quan, Hao Lan, qiang.zhao, f.fainelli,
jesse.brandeburg, xeb, intel-wired-lan, yangyingliang, kuba,
pabeni, yisen.zhuang, ansuelsmth, steve.glendinning, keyur,
mostrows, salil.mehta, netdev, linux-kernel, linux, olteanv,
linuxppc-dev, davem, hkallweit1
On 2023/6/28 22:39, Andrew Lunn wrote:
> On Wed, Jun 28, 2023 at 04:37:43PM +0200, Andrew Lunn wrote:
>>> Hi, Hao Lan,
>>>
>>> Sorry for that, I just compiled these patches in the mainline branch.
>>> I know now, it's also necessary to compile patches in net and net-next
>>> branch.
>>> Thanks for your reply!
>> net-next is also closed at the moment due to the merge window. Please
>> wait two weeks before reposting, by which time net-next will be open
>> again.
Hi, Andrew Lunn,
Understand, and thanks for your reminding!
> Your email threading also seems to be broken, there is no
> threading. That might cause pathworks an issue.
Sometimes it doesn't work, but I also receive email from email list.
So I can read your email from email list although something is broken.
Thanks again!
wuych
>
> Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-06-29 2:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-28 2:41 [PATCH net-next 00/10] Remove unnecessary (void*) conversions wuych
2023-06-28 7:41 ` Hao Lan
2023-06-28 9:01 ` yunchuan
2023-06-28 14:37 ` Andrew Lunn
2023-06-28 14:39 ` Andrew Lunn
2023-06-29 2:10 ` yunchuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox