[PATCH v4 0/3] hw/net: Move MV88W8618 network device out of hw/arm/ directory

Philippe Mathieu-Daudé posted 3 patches 2 years, 3 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220107184429.423572-1-f4bug@amsat.org
include/hw/net/mv88w8618_eth.h |  12 +
hw/arm/musicpal.c              | 381 +------------------------------
hw/net/mv88w8618_eth.c         | 403 +++++++++++++++++++++++++++++++++
MAINTAINERS                    |   2 +
hw/arm/Kconfig                 |   3 +
hw/audio/Kconfig               |   3 -
hw/net/meson.build             |   1 +
7 files changed, 422 insertions(+), 383 deletions(-)
create mode 100644 include/hw/net/mv88w8618_eth.h
create mode 100644 hw/net/mv88w8618_eth.c
[PATCH v4 0/3] hw/net: Move MV88W8618 network device out of hw/arm/ directory
Posted by Philippe Mathieu-Daudé 2 years, 3 months ago
This series simply extract the MV88W8618 device from the ARM
machine in hw/arm/ and move it to hw/net/.

Since v3:
- Rebased on latest main/master

Since v2:
- declare MARVELL_88W8618 in hw/arm/Kconfig
- use MARVELL_88W8618 Kconfig (rth)

Since v1:
- update (c) notice

Philippe Mathieu-Daudé (3):
  hw: Move MARVELL_88W8618 Kconfig from audio/ to arm/
  hw/arm/musicpal: Fix coding style of code related to MV88W8618 device
  hw/net: Move MV88W8618 network device out of hw/arm/ directory

 include/hw/net/mv88w8618_eth.h |  12 +
 hw/arm/musicpal.c              | 381 +------------------------------
 hw/net/mv88w8618_eth.c         | 403 +++++++++++++++++++++++++++++++++
 MAINTAINERS                    |   2 +
 hw/arm/Kconfig                 |   3 +
 hw/audio/Kconfig               |   3 -
 hw/net/meson.build             |   1 +
 7 files changed, 422 insertions(+), 383 deletions(-)
 create mode 100644 include/hw/net/mv88w8618_eth.h
 create mode 100644 hw/net/mv88w8618_eth.c

-- 
2.33.1

Re: [PATCH v4 0/3] hw/net: Move MV88W8618 network device out of hw/arm/ directory
Posted by Peter Maydell 2 years, 3 months ago
On Fri, 7 Jan 2022 at 18:44, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> This series simply extract the MV88W8618 device from the ARM
> machine in hw/arm/ and move it to hw/net/.
>
> Since v3:
> - Rebased on latest main/master



Applied to target-arm.next, thanks.

-- PMM