qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] GRLIB UART: Add RX channel


From: Fabien Chouteau
Subject: Re: [Qemu-devel] [PATCH] GRLIB UART: Add RX channel
Date: Thu, 26 Jan 2012 15:05:31 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.24) Gecko/20111108 Lightning/1.0b2 Mnenhy/0.8.4 Thunderbird/3.1.16

On 26/01/2012 14:55, Avi Kivity wrote:
> On 01/26/2012 03:45 PM, Fabien Chouteau wrote:
>> @@ -141,18 +219,19 @@ grlib_apbuart_write(void *opaque, target_phys_addr_t 
>> addr,
>>  static bool grlib_apbuart_accepts(void *opaque, target_phys_addr_t addr,
>>                                    unsigned size, bool is_write)
>>  {
>> -    return is_write && size == 4;
>> +    return size <= 4;
>>  }
> 
> Please drop this function.
> 
>>  
>>  static const MemoryRegionOps grlib_apbuart_ops = {
>>      .write = grlib_apbuart_write,
>> +    .read = grlib_apbuart_read,
>>      .valid.accepts = grlib_apbuart_accepts,
> 
> The default is to accept sizes 1-4, so you can just drop .valid.accepts
> and need not replace it with anything.

OK, thanks.

-- 
Fabien Chouteau



reply via email to

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