qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] 455177: hw/usb: Style cleanup


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] 455177: hw/usb: Style cleanup
Date: Thu, 22 Feb 2024 07:32:55 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 455177ffc457098b0103d2a09cb7ba5e260dfcdd
      
https://github.com/qemu/qemu/commit/455177ffc457098b0103d2a09cb7ba5e260dfcdd
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/usb/hcd-ehci.c
    M hw/usb/hcd-uhci.c

  Log Message:
  -----------
  hw/usb: Style cleanup

We are going to modify these lines, fix their style
in order to avoid checkpatch.pl warning.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: fe693e32c8136bba792a355617d2b0f5d1914721
      
https://github.com/qemu/qemu/commit/fe693e32c8136bba792a355617d2b0f5d1914721
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/usb/hcd-uhci.c
    M hw/usb/hcd-uhci.h

  Log Message:
  -----------
  hw/usb/uhci: Rename NB_PORTS -> UHCI_PORTS

Rename NB_PORTS as UHCI_PORTS to avoid definition clash
with EHCI equivalent:

  hw/usb/hcd-uhci.h:38:9: error: 'NB_PORTS' macro redefined 
[-Werror,-Wmacro-redefined]
  #define NB_PORTS 2
          ^
  hw/usb/hcd-ehci.h:40:9: note: previous definition is here
  #define NB_PORTS         6        /* Max. Number of downstream ports */
          ^

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 1c83f366f909198a7bb50db2b40b3486ac977da2
      
https://github.com/qemu/qemu/commit/1c83f366f909198a7bb50db2b40b3486ac977da2
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/usb/hcd-ehci-pci.c
    M hw/usb/hcd-ehci-sysbus.c
    M hw/usb/hcd-ehci.c
    M hw/usb/hcd-ehci.h

  Log Message:
  -----------
  hw/usb/ehci: Rename NB_PORTS -> EHCI_PORTS

Rename NB_PORTS as EHCI_PORTS to avoid definition clash
with UHCI equivalent:

  hw/usb/hcd-ehci.h:40:9: error: 'NB_PORTS' macro redefined 
[-Werror,-Wmacro-redefined]
  #define NB_PORTS         6        /* Max. Number of downstream ports */
          ^
  hw/usb/hcd-uhci.h:38:9: note: previous definition is here
  #define NB_PORTS 2
          ^

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 6b29e3722e2482f6418b8c9a6969b269e04f73a0
      
https://github.com/qemu/qemu/commit/6b29e3722e2482f6418b8c9a6969b269e04f73a0
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/i386/kvm/ioapic.c

  Log Message:
  -----------
  hw/i386/kvm/ioapic: Replace magic '24' value by proper definition

Replace '24' -> KVM_IOAPIC_NUM_PINS.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 22942c10608adc9054cab01e85a8d2f2bc58b276
      
https://github.com/qemu/qemu/commit/22942c10608adc9054cab01e85a8d2f2bc58b276
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M target/i386/monitor.c

  Log Message:
  -----------
  target/i386/monitor: Remove unused 'hw/i386/pc.h' header

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: e62f8ffb293c1abb8575b33d6a699c3af83f5698
      
https://github.com/qemu/qemu/commit/e62f8ffb293c1abb8575b33d6a699c3af83f5698
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/timer/hpet.c
    M include/hw/i386/pc.h
    M include/hw/timer/hpet.h

  Log Message:
  -----------
  hw/timer: Move HPET_INTCAP definition to "hpet.h"

HPET_INTCAP is specific to TYPE_HPET, so define it there.
hpet.c doesn't need to include "hw/i386/pc.h" anymore.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: b9212a57f57f637ee6d25208d961e3c90c97ef98
      
https://github.com/qemu/qemu/commit/b9212a57f57f637ee6d25208d961e3c90c97ef98
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/isa/lpc_ich9.c

  Log Message:
  -----------
  hw/isa/lpc_ich9: Remove unused 'hw/i386/pc.h'

Commit c461f3e382 ("hw/acpi/acpi_dev_interface: Remove now unused
madt_cpu virtual method") removed the need for "hw/i386/pc.h".

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: a4ed7a7b763bd9d82b1e9c5e8c24938a69284504
      
https://github.com/qemu/qemu/commit/a4ed7a7b763bd9d82b1e9c5e8c24938a69284504
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/i386/acpi-common.c
    M hw/i386/acpi-common.h
    M include/hw/i386/pc.h

  Log Message:
  -----------
  hw/i386/acpi: Declare pc_madt_cpu_entry() in 'acpi-common.h'

Since pc_madt_cpu_entry() is only used by:
 - hw/i386/acpi-build.c   // single call
 - hw/i386/acpi-common.c  // definition
there is no need to expose it outside of hw/i386/.
Declare it in "acpi-common.h".
acpi-build.c doesn't need "hw/i386/pc.h" anymore.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 0a1e084949dcc2282cbbed33f10ca56d478023bd
      
https://github.com/qemu/qemu/commit/0a1e084949dcc2282cbbed33f10ca56d478023bd
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/i386/port92.c

  Log Message:
  -----------
  hw/i386/port92: Add missing 'hw/isa/isa.h' header

TYPE_PORT92 inherits TYPE_ISA_DEVICE, so need to include
"hw/isa/isa.h" to get its declarations (currently we
indirectly include this header via "hw/i386/pc.h").

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 480c9b22330ddf18b11c027857e3c0d54448e027
      
https://github.com/qemu/qemu/commit/480c9b22330ddf18b11c027857e3c0d54448e027
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/acpi/cpu_hotplug.c

  Log Message:
  -----------
  hw/acpi/cpu_hotplug: Include 'pci_device.h' instead of 'pci.h'

cpu_hotplug.c only needs the PCI *device* definitions.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: a722c0b125037dee7c68c688f681dcfc21522fc6
      
https://github.com/qemu/qemu/commit/a722c0b125037dee7c68c688f681dcfc21522fc6
  Author: Philippe Mathieu-Daudé <philmd@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/acpi/cpu_hotplug.c

  Log Message:
  -----------
  hw/acpi/cpu_hotplug: Include 'x86.h' instead of 'pc.h'

X86 CPU hotplug isn't specific to PC machines.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: Luc Michel <luc.michel@amd.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: aab4631a4aadf8fc4a5288357bded72aaae686b6
      
https://github.com/qemu/qemu/commit/aab4631a4aadf8fc4a5288357bded72aaae686b6
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M system/physmem.c

  Log Message:
  -----------
  system/physmem: remove redundant arg reassignment

Arguments `ram_block` are reassigned to local declarations `block`
without further use. Remove re-assignment to reduce noise.

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: c555b504d0961359015527f586203b6c37ef2bc6
      
https://github.com/qemu/qemu/commit/c555b504d0961359015527f586203b6c37ef2bc6
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M docs/devel/ci-jobs.rst.inc
    M docs/devel/docs.rst
    M docs/devel/testing.rst
    M docs/interop/prl-xml.txt
    M docs/interop/vhost-user.rst
    M docs/system/devices/canokey.rst

  Log Message:
  -----------
  docs: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
(mjt: trivial fixup)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 35a5a331e4ff1b63f1e49f63e2f8b851aa54bf0d
      
https://github.com/qemu/qemu/commit/35a5a331e4ff1b63f1e49f63e2f8b851aa54bf0d
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M tests/avocado/acpi-bits/bits-tests/smbios.py2
    M tests/avocado/mem-addr-space-check.py
    M tests/avocado/reverse_debugging.py

  Log Message:
  -----------
  tests: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Pavel Dovgalyuk <Pavel.Dovgalyuk@ispras.ru>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 431eddb69ac658b2b25e07239d5e01c25712f5e8
      
https://github.com/qemu/qemu/commit/431eddb69ac658b2b25e07239d5e01c25712f5e8
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M accel/tcg/ldst_atomicity.c.inc

  Log Message:
  -----------
  accel/tcg: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: a1b93551649379553f3597f69f0370502a8872f5
      
https://github.com/qemu/qemu/commit/a1b93551649379553f3597f69f0370502a8872f5
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M hw/mips/loongson3_bootp.h

  Log Message:
  -----------
  loongson3: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 2bd55fd394067133e256b3b0326a2ee7854b7f1c
      
https://github.com/qemu/qemu/commit/2bd55fd394067133e256b3b0326a2ee7854b7f1c
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-20 (Tue, 20 Feb 2024)

  Changed paths:
    M target/ppc/translate/vmx-impl.c.inc

  Log Message:
  -----------
  ppc: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
(mjt: remove 2 "arbitrer" hunks, suggested by BALATON)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 8b68e0e731b78501a65992d8bd6c83bde0e7c981
      
https://github.com/qemu/qemu/commit/8b68e0e731b78501a65992d8bd6c83bde0e7c981
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M hw/sh4/sh7750_regs.h

  Log Message:
  -----------
  sh4: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 2432e063cb98a23cfa61c9ef79e88bcf8ace0e8c
      
https://github.com/qemu/qemu/commit/2432e063cb98a23cfa61c9ef79e88bcf8ace0e8c
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M include/exec/memory.h

  Log Message:
  -----------
  include/exec/memory.h: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: c3aa4206fc5b5243632d58b8b8680ea068cf79ae
      
https://github.com/qemu/qemu/commit/c3aa4206fc5b5243632d58b8b8680ea068cf79ae
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M include/hw/arm/omap.h

  Log Message:
  -----------
  hw/arm/omap.h: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
(mjt: fix comment style as suggested by Philippe)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: c3df8c3084644d327b5007ff92e479d38b9a3050
      
https://github.com/qemu/qemu/commit/c3df8c3084644d327b5007ff92e479d38b9a3050
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M include/hw/cxl/cxl_device.h

  Log Message:
  -----------
  hw/cxl/cxl_device.h: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 8fcc477d494961a6e7759753146de8074c124d44
      
https://github.com/qemu/qemu/commit/8fcc477d494961a6e7759753146de8074c124d44
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M include/hw/net/npcm_gmac.h

  Log Message:
  -----------
  hw/net/npcm_gmac.h: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: b1470a14b3f17f16be1d10b96dc7b1480ca6bab0
      
https://github.com/qemu/qemu/commit/b1470a14b3f17f16be1d10b96dc7b1480ca6bab0
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M include/hw/riscv/virt.h

  Log Message:
  -----------
  hw/riscv/virt.h: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: a0e93dd8185a055cb44255d2cde50cd762d0c728
      
https://github.com/qemu/qemu/commit/a0e93dd8185a055cb44255d2cde50cd762d0c728
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M pc-bios/README

  Log Message:
  -----------
  pc-bios/README: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: af113f6f007d5638573b0ef538a483bff6017eed
      
https://github.com/qemu/qemu/commit/af113f6f007d5638573b0ef538a483bff6017eed
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M qapi/ui.json

  Log Message:
  -----------
  qapi/ui: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 835f364ed963d855596395fa68ed5246d9f11a83
      
https://github.com/qemu/qemu/commit/835f364ed963d855596395fa68ed5246d9f11a83
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M qemu-options.hx

  Log Message:
  -----------
  qemu-options.hx: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: a062f7f9ecb6754b5f54e350809401c5cf7529f8
      
https://github.com/qemu/qemu/commit/a062f7f9ecb6754b5f54e350809401c5cf7529f8
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M scripts/ci/gitlab-pipeline-status

  Log Message:
  -----------
  ci/gitlab-pipeline-status: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 5c192aa98254f130d3e75cedf5dadfd4b01f4a87
      
https://github.com/qemu/qemu/commit/5c192aa98254f130d3e75cedf5dadfd4b01f4a87
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M target/hexagon/idef-parser/macros.inc

  Log Message:
  -----------
  hexagon: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: c2ca6c9ca177753ca76c82fc7ed53926a3172783
      
https://github.com/qemu/qemu/commit/c2ca6c9ca177753ca76c82fc7ed53926a3172783
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M target/m68k/cpu.h

  Log Message:
  -----------
  m68k: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
(mjt: trivial fixup "covers" suggested by Thomas)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 52a56ed2166cad644da3c9b5c2089fe5a2babc0d
      
https://github.com/qemu/qemu/commit/52a56ed2166cad644da3c9b5c2089fe5a2babc0d
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M target/s390x/cpu_features_def.h.inc

  Log Message:
  -----------
  s390x: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 690f50c27d6046f3f34e059ee8e8944eae1b7390
      
https://github.com/qemu/qemu/commit/690f50c27d6046f3f34e059ee8e8944eae1b7390
  Author: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M target/sparc/asi.h

  Log Message:
  -----------
  target/sparc: correct typos

Correct typos automatically found with the `typos` tool
<https://crates.io/crates/typos>

Signed-off-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 04b86ccb5dc8a1fad809753cfbaafd4bb13283d4
      
https://github.com/qemu/qemu/commit/04b86ccb5dc8a1fad809753cfbaafd4bb13283d4
  Author: Thomas Huth <thuth@redhat.com>
  Date:   2024-02-21 (Wed, 21 Feb 2024)

  Changed paths:
    M hw/hppa/Kconfig

  Log Message:
  -----------
  hw/hppa/Kconfig: Fix building with "configure --without-default-devices"

When running "configure" with "--without-default-devices", building
of qemu-system-hppa currently fails with:

 /usr/bin/ld: libqemu-hppa-softmmu.fa.p/hw_hppa_machine.c.o: in function 
`machine_HP_common_init_tail':
 hw/hppa/machine.c:399: undefined reference to `usb_bus_find'
 /usr/bin/ld: hw/hppa/machine.c:399: undefined reference to `usb_create_simple'
 /usr/bin/ld: hw/hppa/machine.c:400: undefined reference to `usb_bus_find'
 /usr/bin/ld: hw/hppa/machine.c:400: undefined reference to `usb_create_simple'
 collect2: error: ld returned 1 exit status
 ninja: build stopped: subcommand failed.
 make: *** [Makefile:162: run-ninja] Error 1

And after fixing this, the qemu-system-hppa binary refuses to run
due to the missing 'pci-ohci' and 'pci-serial' devices. Let's add
the right config switches to fix these problems.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 4a20ac400ff0753f159071764826b20e5320cde9
      
https://github.com/qemu/qemu/commit/4a20ac400ff0753f159071764826b20e5320cde9
  Author: Tianlan Zhou <bobby825@126.com>
  Date:   2024-02-22 (Thu, 22 Feb 2024)

  Changed paths:
    M docs/system/keys.rst.inc

  Log Message:
  -----------
  docs/system: Update description for input grab key

Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt.

Fixes: f8d2c9369b ("sdl: use ctrl-alt-g as grab hotkey")
Signed-off-by: Tianlan Zhou <bobby825@126.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 185311130f54ead75c407cdf83004d575829b5d2
      
https://github.com/qemu/qemu/commit/185311130f54ead75c407cdf83004d575829b5d2
  Author: Tianlan Zhou <bobby825@126.com>
  Date:   2024-02-22 (Thu, 22 Feb 2024)

  Changed paths:
    M system/vl.c

  Log Message:
  -----------
  system/vl: Update description for input grab key

Input grab key should be Ctrl-Alt-g, not just Ctrl-Alt.

Fixes: f8d2c9369b ("sdl: use ctrl-alt-g as grab hotkey")
Signed-off-by: Tianlan Zhou <bobby825@126.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>


  Commit: 5cd3ae4903e33982e7a9bbd04674af517e796d6e
      
https://github.com/qemu/qemu/commit/5cd3ae4903e33982e7a9bbd04674af517e796d6e
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2024-02-22 (Thu, 22 Feb 2024)

  Changed paths:
    M .gitlab-ci.d/windows.yml

  Log Message:
  -----------
  .gitlab-ci.d/windows.yml: Drop msys2-32bit job

MSYS2 is dropping support for 32-bit Windows.  This shows up for us
as various packages we were using in our CI job no longer being
available to install, which causes the job to fail.  In commit
8e31b744fdf we dropped the dependency on libusb and spice, but the
dtc package has also now been removed.

For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
already been deprecated as of QEMU 8.0, so we are ready to drop them
anyway.

Drop the msys2-32bit CI job, as the first step in doing this.

This is cc'd to stable, because this job will also be broken for CI
on the stable branches.  We can't drop 32-bit support entirely there,
but we will still be covering at least compilation for 32-bit Windows
via the cross-win32-system job.

Cc: qemu-stable@nongnu.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 20240220165602.135695-1-peter.maydell@linaro.org


  Commit: 6630bc04bccadcf868165ad6bca5a964bb69b067
      
https://github.com/qemu/qemu/commit/6630bc04bccadcf868165ad6bca5a964bb69b067
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2024-02-22 (Thu, 22 Feb 2024)

  Changed paths:
    M accel/tcg/ldst_atomicity.c.inc
    M docs/devel/ci-jobs.rst.inc
    M docs/devel/docs.rst
    M docs/devel/testing.rst
    M docs/interop/prl-xml.txt
    M docs/interop/vhost-user.rst
    M docs/system/devices/canokey.rst
    M docs/system/keys.rst.inc
    M hw/acpi/cpu_hotplug.c
    M hw/hppa/Kconfig
    M hw/i386/acpi-common.c
    M hw/i386/acpi-common.h
    M hw/i386/kvm/ioapic.c
    M hw/i386/port92.c
    M hw/isa/lpc_ich9.c
    M hw/mips/loongson3_bootp.h
    M hw/sh4/sh7750_regs.h
    M hw/timer/hpet.c
    M hw/usb/hcd-ehci-pci.c
    M hw/usb/hcd-ehci-sysbus.c
    M hw/usb/hcd-ehci.c
    M hw/usb/hcd-ehci.h
    M hw/usb/hcd-uhci.c
    M hw/usb/hcd-uhci.h
    M include/exec/memory.h
    M include/hw/arm/omap.h
    M include/hw/cxl/cxl_device.h
    M include/hw/i386/pc.h
    M include/hw/net/npcm_gmac.h
    M include/hw/riscv/virt.h
    M include/hw/timer/hpet.h
    M pc-bios/README
    M qapi/ui.json
    M qemu-options.hx
    M scripts/ci/gitlab-pipeline-status
    M system/physmem.c
    M system/vl.c
    M target/hexagon/idef-parser/macros.inc
    M target/i386/monitor.c
    M target/m68k/cpu.h
    M target/ppc/translate/vmx-impl.c.inc
    M target/s390x/cpu_features_def.h.inc
    M target/sparc/asi.h
    M tests/avocado/acpi-bits/bits-tests/smbios.py2
    M tests/avocado/mem-addr-space-check.py
    M tests/avocado/reverse_debugging.py

  Log Message:
  -----------
  Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging

trivial patches for 2024-02-22

# -----BEGIN PGP SIGNATURE-----
#
# iQFDBAABCAAtFiEEe3O61ovnosKJMUsicBtPaxppPlkFAmXXLtwPHG1qdEB0bHMu
# bXNrLnJ1AAoJEHAbT2saaT5ZKH0H/0qdQXdoc/ZTdAtUPFJGhEc6KMeOO1w9928w
# OSOB7w4dJiKt6I53WtmY9f2+7/CMJHyscV3xlClRaaZeJVFzgwOo8Wjqkmwa8uOw
# Nl5GcL2egBPuY7Ucc1eNIj/I4RbS1pX5vURkUfTG3AH1SEbFAv9Gk6qBtrmer2YA
# hg2DdCskvPd8EOovx3sWQRH+Ra4w3hxaAELS9sa9ZKLBAaYvucYan9IjLaJqSY84
# b441QXu3ht/DpLw6d/HDWUqwYUOJD0HUhPSvba1xCsrzQVXFE7VhR5O/cDrqs2qm
# 2fcMW6j62raPdK1u77WaRdslPy34YUmjk7lwZ8wiS7fmDx0Aqcg=
# =0va1
# -----END PGP SIGNATURE-----
# gpg: Signature made Thu 22 Feb 2024 11:24:12 GMT
# gpg:                using RSA key 7B73BAD68BE7A2C289314B22701B4F6B1A693E59
# gpg:                issuer "mjt@tls.msk.ru"
# gpg: Good signature from "Michael Tokarev <mjt@tls.msk.ru>" [full]
# gpg:                 aka "Michael Tokarev <mjt@corpit.ru>" [full]
# gpg:                 aka "Michael Tokarev <mjt@debian.org>" [full]
# Primary key fingerprint: 6EE1 95D1 886E 8FFB 810D  4324 457C E0A0 8044 65C5
#      Subkey fingerprint: 7B73 BAD6 8BE7 A2C2 8931  4B22 701B 4F6B 1A69 3E59

* tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu: (34 commits)
  system/vl: Update description for input grab key
  docs/system: Update description for input grab key
  hw/hppa/Kconfig: Fix building with "configure --without-default-devices"
  target/sparc: correct typos
  s390x: correct typos
  m68k: correct typos
  hexagon: correct typos
  ci/gitlab-pipeline-status: correct typos
  qemu-options.hx: correct typos
  qapi/ui: correct typos
  pc-bios/README: correct typos
  hw/riscv/virt.h: correct typos
  hw/net/npcm_gmac.h: correct typos
  hw/cxl/cxl_device.h: correct typos
  hw/arm/omap.h: correct typos
  include/exec/memory.h: correct typos
  sh4: correct typos
  ppc: correct typos
  loongson3: correct typos
  accel/tcg: correct typos
  ...

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/760b4dcdddba...6630bc04bcca

To unsubscribe from these emails, change your notification settings at 
https://github.com/qemu/qemu/settings/notifications



reply via email to

[Prev in Thread] Current Thread [Next in Thread]