All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Remove unused MAX_IDE_BUS define
@ 2022-09-17 11:51 BALATON Zoltan
  2022-09-17 20:54 ` Richard Henderson
  2022-09-17 20:58 ` Philippe Mathieu-Daudé via
  0 siblings, 2 replies; 3+ messages in thread
From: BALATON Zoltan @ 2022-09-17 11:51 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: richard.henderson, deller, chenhuacai, f4bug, jiaxun.yang,
	aurelien, hpoussin, mark.cave-ayland


Several machines have an unused MAX_IDE_BUS define. Remove it from
these machines that don't need it.

Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
---
 hw/alpha/dp264.c    | 2 --
 hw/hppa/machine.c   | 2 --
 hw/mips/fuloong2e.c | 1 -
 hw/mips/malta.c     | 2 --
 hw/ppc/prep.c       | 2 --
 hw/sparc64/sun4u.c  | 1 -
 6 files changed, 10 deletions(-)

diff --git a/hw/alpha/dp264.c b/hw/alpha/dp264.c
index f4349eba83..c502c8c62a 100644
--- a/hw/alpha/dp264.c
+++ b/hw/alpha/dp264.c
@@ -20,8 +20,6 @@
 #include "qemu/datadir.h"
 #include "net/net.h"
 
-#define MAX_IDE_BUS 2
-
 static uint64_t cpu_alpha_superpage_to_phys(void *opaque, uint64_t addr)
 {
     if (((addr >> 41) & 3) == 2) {
diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c
index e53d5f0fa7..355b3aac2e 100644
--- a/hw/hppa/machine.c
+++ b/hw/hppa/machine.c
@@ -30,8 +30,6 @@
 #include "qemu/log.h"
 #include "net/net.h"
 
-#define MAX_IDE_BUS 2
-
 #define MIN_SEABIOS_HPPA_VERSION 6 /* require at least this fw version */
 
 #define HPA_POWER_BUTTON (FIRMWARE_END - 0x10)
diff --git a/hw/mips/fuloong2e.c b/hw/mips/fuloong2e.c
index 5ee546f5f6..8c747ac1a0 100644
--- a/hw/mips/fuloong2e.c
+++ b/hw/mips/fuloong2e.c
@@ -49,7 +49,6 @@
 
 /* Fuloong 2e has a 512k flash: Winbond W39L040AP70Z */
 #define BIOS_SIZE               (512 * KiB)
-#define MAX_IDE_BUS             2
 
 /*
  * PMON is not part of qemu and released with BSD license, anyone
diff --git a/hw/mips/malta.c b/hw/mips/malta.c
index 0e932988e0..5099ed9592 100644
--- a/hw/mips/malta.c
+++ b/hw/mips/malta.c
@@ -69,8 +69,6 @@
 
 #define FLASH_SIZE          0x400000
 
-#define MAX_IDE_BUS         2
-
 typedef struct {
     MemoryRegion iomem;
     MemoryRegion iomem_lo; /* 0 - 0x900 */
diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c
index f08714f2ec..fcbe4c5837 100644
--- a/hw/ppc/prep.c
+++ b/hw/ppc/prep.c
@@ -50,8 +50,6 @@
 /* SMP is not enabled, for now */
 #define MAX_CPUS 1
 
-#define MAX_IDE_BUS 2
-
 #define CFG_ADDR 0xf0000510
 
 #define KERNEL_LOAD_ADDR 0x01000000
diff --git a/hw/sparc64/sun4u.c b/hw/sparc64/sun4u.c
index 0e27715ac4..387181ff77 100644
--- a/hw/sparc64/sun4u.c
+++ b/hw/sparc64/sun4u.c
@@ -66,7 +66,6 @@
 #define PBM_PCI_IO_BASE      (PBM_SPECIAL_BASE + 0x02000000ULL)
 #define PROM_FILENAME        "openbios-sparc64"
 #define NVRAM_SIZE           0x2000
-#define MAX_IDE_BUS          2
 #define BIOS_CFG_IOPORT      0x510
 #define FW_CFG_SPARC64_WIDTH (FW_CFG_ARCH_LOCAL + 0x00)
 #define FW_CFG_SPARC64_HEIGHT (FW_CFG_ARCH_LOCAL + 0x01)
-- 
2.30.4



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

* Re: [PATCH] Remove unused MAX_IDE_BUS define
  2022-09-17 11:51 [PATCH] Remove unused MAX_IDE_BUS define BALATON Zoltan
@ 2022-09-17 20:54 ` Richard Henderson
  2022-09-17 20:58 ` Philippe Mathieu-Daudé via
  1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2022-09-17 20:54 UTC (permalink / raw)
  To: BALATON Zoltan, qemu-devel, qemu-trivial
  Cc: deller, chenhuacai, f4bug, jiaxun.yang, aurelien, hpoussin,
	mark.cave-ayland

On 9/17/22 13:51, BALATON Zoltan wrote:
> Several machines have an unused MAX_IDE_BUS define. Remove it from
> these machines that don't need it.
> 
> Signed-off-by: BALATON Zoltan<balaton@eik.bme.hu>
> ---
>   hw/alpha/dp264.c    | 2 --
>   hw/hppa/machine.c   | 2 --
>   hw/mips/fuloong2e.c | 1 -
>   hw/mips/malta.c     | 2 --
>   hw/ppc/prep.c       | 2 --
>   hw/sparc64/sun4u.c  | 1 -
>   6 files changed, 10 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~


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

* Re: [PATCH] Remove unused MAX_IDE_BUS define
  2022-09-17 11:51 [PATCH] Remove unused MAX_IDE_BUS define BALATON Zoltan
  2022-09-17 20:54 ` Richard Henderson
@ 2022-09-17 20:58 ` Philippe Mathieu-Daudé via
  1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-09-17 20:58 UTC (permalink / raw)
  To: BALATON Zoltan, qemu-devel, qemu-trivial
  Cc: richard.henderson, deller, chenhuacai, jiaxun.yang, aurelien,
	hpoussin, mark.cave-ayland

On 17/9/22 13:51, BALATON Zoltan wrote:
> Several machines have an unused MAX_IDE_BUS define. Remove it from
> these machines that don't need it.
> 
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
> ---
>   hw/alpha/dp264.c    | 2 --
>   hw/hppa/machine.c   | 2 --
>   hw/mips/fuloong2e.c | 1 -
>   hw/mips/malta.c     | 2 --
>   hw/ppc/prep.c       | 2 --
>   hw/sparc64/sun4u.c  | 1 -
>   6 files changed, 10 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

And queued to mips-next, thanks!


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

end of thread, other threads:[~2022-09-17 20:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-17 11:51 [PATCH] Remove unused MAX_IDE_BUS define BALATON Zoltan
2022-09-17 20:54 ` Richard Henderson
2022-09-17 20:58 ` Philippe Mathieu-Daudé via

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.