qemu-trivial
[Top][All Lists]
Advanced

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

Re: [Qemu-trivial] [PATCH v2] tpm: Move memory subregion function into r


From: Paolo Bonzini
Subject: Re: [Qemu-trivial] [PATCH v2] tpm: Move memory subregion function into realize function
Date: Tue, 10 Mar 2015 16:48:20 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0


On 10/03/2015 16:07, Michael S. Tsirkin wrote:
> On Tue, Mar 10, 2015 at 06:34:01AM -0400, Stefan Berger wrote:
>> From: Stefan Berger <address@hidden>
>>
>> Move the memory subregion function into the DeviceClass realize function
>> due to isa_address_space (now) crashing if called in the instance init
>> function.
>>
>> Signed-off-by: Stefan Berger <address@hidden>
> 
> Paolo can you ack pls?

Yup.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Paolo Bonzini <address@hidden>

> 
>> ---
>>  hw/tpm/tpm_tis.c | 6 +++---
>>  1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c
>> index d0bb97f..9084ca4 100644
>> --- a/hw/tpm/tpm_tis.c
>> +++ b/hw/tpm/tpm_tis.c
>> @@ -959,18 +959,18 @@ static void tpm_tis_realizefn(DeviceState *dev, Error 
>> **errp)
>>      tis->bh = qemu_bh_new(tpm_tis_receive_bh, s);
>>  
>>      isa_init_irq(&s->busdev, &tis->irq, tis->irq_num);
>> +
>> +    memory_region_add_subregion(isa_address_space(ISA_DEVICE(dev)),
>> +                                TPM_TIS_ADDR_BASE, &s->mmio);
>>  }
>>  
>>  static void tpm_tis_initfn(Object *obj)
>>  {
>> -    ISADevice *dev = ISA_DEVICE(obj);
>>      TPMState *s = TPM(obj);
>>  
>>      memory_region_init_io(&s->mmio, OBJECT(s), &tpm_tis_memory_ops,
>>                            s, "tpm-tis-mmio",
>>                            TPM_TIS_NUM_LOCALITIES << TPM_TIS_LOCALITY_SHIFT);
>> -    memory_region_add_subregion(isa_address_space(dev), TPM_TIS_ADDR_BASE,
>> -                                &s->mmio);
>>  }
>>  
>>  static void tpm_tis_class_init(ObjectClass *klass, void *data)
>> -- 
>> 2.1.0
> 
> 



reply via email to

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