[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PATCH 3/6] prep: do not use global variable to access nv
From: |
David Gibson |
Subject: |
Re: [Qemu-ppc] [PATCH 3/6] prep: do not use global variable to access nvram |
Date: |
Tue, 3 Jan 2017 14:51:44 +1100 |
User-agent: |
Mutt/1.7.1 (2016-10-04) |
On Thu, Dec 29, 2016 at 11:12:13PM +0100, Hervé Poussineau wrote:
> Signed-off-by: Hervé Poussineau <address@hidden>
This makes sense on its own, so I've applied it to ppc-for-2.9.
> ---
> hw/ppc/prep.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/hw/ppc/prep.c b/hw/ppc/prep.c
> index 054af1e..9fb89d3 100644
> --- a/hw/ppc/prep.c
> +++ b/hw/ppc/prep.c
> @@ -339,13 +339,13 @@ static PortioList prep_port_list;
> /* NVRAM helpers */
> static inline uint32_t nvram_read(Nvram *nvram, uint32_t addr)
> {
> - NvramClass *k = NVRAM_GET_CLASS(sysctrl->nvram);
> + NvramClass *k = NVRAM_GET_CLASS(nvram);
> return (k->read)(nvram, addr);
> }
>
> static inline void nvram_write(Nvram *nvram, uint32_t addr, uint32_t val)
> {
> - NvramClass *k = NVRAM_GET_CLASS(sysctrl->nvram);
> + NvramClass *k = NVRAM_GET_CLASS(nvram);
> (k->write)(nvram, addr, val);
> }
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
signature.asc
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: [Qemu-ppc] [PATCH 3/6] prep: do not use global variable to access nvram,
David Gibson <=