* [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops
@ 2014-09-14 19:38 Peter Maydell
2014-09-30 11:31 ` Peter Maydell
2014-10-01 14:54 ` Alexander Graf
0 siblings, 2 replies; 3+ messages in thread
From: Peter Maydell @ 2014-09-14 19:38 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-ppc, Alexander Graf, patches
The MemoryRegionOps struct pci4xx_cfgaddr_ops and the read and
write functions it references are all unused; remove them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
This is rather applying a blunt instrument to the code -- maybe
the ops should be used for something instead? (cf the comment about
splitting memory regions in ppc4xx_pcihost_initfn()...)
hw/ppc/ppc4xx_pci.c | 24 ------------------------
1 file changed, 24 deletions(-)
diff --git a/hw/ppc/ppc4xx_pci.c b/hw/ppc/ppc4xx_pci.c
index 55a3cab..0bb3cdb 100644
--- a/hw/ppc/ppc4xx_pci.c
+++ b/hw/ppc/ppc4xx_pci.c
@@ -92,30 +92,6 @@ typedef struct PPC4xxPCIState PPC4xxPCIState;
#define PCI_ALL_SIZE (PCI_REG_BASE + PCI_REG_SIZE)
-static uint64_t pci4xx_cfgaddr_read(void *opaque, hwaddr addr,
- unsigned size)
-{
- PPC4xxPCIState *ppc4xx_pci = opaque;
- PCIHostState *phb = PCI_HOST_BRIDGE(ppc4xx_pci);
-
- return phb->config_reg;
-}
-
-static void pci4xx_cfgaddr_write(void *opaque, hwaddr addr,
- uint64_t value, unsigned size)
-{
- PPC4xxPCIState *ppc4xx_pci = opaque;
- PCIHostState *phb = PCI_HOST_BRIDGE(ppc4xx_pci);
-
- phb->config_reg = value & ~0x3;
-}
-
-static const MemoryRegionOps pci4xx_cfgaddr_ops = {
- .read = pci4xx_cfgaddr_read,
- .write = pci4xx_cfgaddr_write,
- .endianness = DEVICE_LITTLE_ENDIAN,
-};
-
static void ppc4xx_pci_reg_write4(void *opaque, hwaddr offset,
uint64_t value, unsigned size)
{
--
2.0.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops
2014-09-14 19:38 [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops Peter Maydell
@ 2014-09-30 11:31 ` Peter Maydell
2014-10-01 14:54 ` Alexander Graf
1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2014-09-30 11:31 UTC (permalink / raw)
To: QEMU Developers; +Cc: qemu-ppc@nongnu.org, Alexander Graf, Patch Tracking
Ping!
thanks
-- PMM
On 14 September 2014 20:38, Peter Maydell <peter.maydell@linaro.org> wrote:
> The MemoryRegionOps struct pci4xx_cfgaddr_ops and the read and
> write functions it references are all unused; remove them.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> This is rather applying a blunt instrument to the code -- maybe
> the ops should be used for something instead? (cf the comment about
> splitting memory regions in ppc4xx_pcihost_initfn()...)
>
> hw/ppc/ppc4xx_pci.c | 24 ------------------------
> 1 file changed, 24 deletions(-)
>
> diff --git a/hw/ppc/ppc4xx_pci.c b/hw/ppc/ppc4xx_pci.c
> index 55a3cab..0bb3cdb 100644
> --- a/hw/ppc/ppc4xx_pci.c
> +++ b/hw/ppc/ppc4xx_pci.c
> @@ -92,30 +92,6 @@ typedef struct PPC4xxPCIState PPC4xxPCIState;
>
> #define PCI_ALL_SIZE (PCI_REG_BASE + PCI_REG_SIZE)
>
> -static uint64_t pci4xx_cfgaddr_read(void *opaque, hwaddr addr,
> - unsigned size)
> -{
> - PPC4xxPCIState *ppc4xx_pci = opaque;
> - PCIHostState *phb = PCI_HOST_BRIDGE(ppc4xx_pci);
> -
> - return phb->config_reg;
> -}
> -
> -static void pci4xx_cfgaddr_write(void *opaque, hwaddr addr,
> - uint64_t value, unsigned size)
> -{
> - PPC4xxPCIState *ppc4xx_pci = opaque;
> - PCIHostState *phb = PCI_HOST_BRIDGE(ppc4xx_pci);
> -
> - phb->config_reg = value & ~0x3;
> -}
> -
> -static const MemoryRegionOps pci4xx_cfgaddr_ops = {
> - .read = pci4xx_cfgaddr_read,
> - .write = pci4xx_cfgaddr_write,
> - .endianness = DEVICE_LITTLE_ENDIAN,
> -};
> -
> static void ppc4xx_pci_reg_write4(void *opaque, hwaddr offset,
> uint64_t value, unsigned size)
> {
> --
> 2.0.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops
2014-09-14 19:38 [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops Peter Maydell
2014-09-30 11:31 ` Peter Maydell
@ 2014-10-01 14:54 ` Alexander Graf
1 sibling, 0 replies; 3+ messages in thread
From: Alexander Graf @ 2014-10-01 14:54 UTC (permalink / raw)
To: Peter Maydell, qemu-devel; +Cc: qemu-ppc, patches
On 14.09.14 21:38, Peter Maydell wrote:
> The MemoryRegionOps struct pci4xx_cfgaddr_ops and the read and
> write functions it references are all unused; remove them.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Thanks, applied to ppc-next.
Alex
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-10-01 14:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-14 19:38 [Qemu-devel] [PATCH] hw/pci/ppc4xx_pci.c: Remove unused pci4xx_cfgaddr_read/write/ops Peter Maydell
2014-09-30 11:31 ` Peter Maydell
2014-10-01 14:54 ` Alexander Graf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).