mirror of
https://github.com/qemu/qemu.git
synced 2024-12-02 08:13:34 +08:00
xhci: add xhci_cap_write
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
94ae9eece7
commit
6d3bc22e31
@ -3079,8 +3079,15 @@ static void xhci_doorbell_write(void *ptr, hwaddr reg,
|
||||
}
|
||||
}
|
||||
|
||||
static void xhci_cap_write(void *opaque, hwaddr addr, uint64_t val,
|
||||
unsigned width)
|
||||
{
|
||||
/* nothing */
|
||||
}
|
||||
|
||||
static const MemoryRegionOps xhci_cap_ops = {
|
||||
.read = xhci_cap_read,
|
||||
.write = xhci_cap_write,
|
||||
.valid.min_access_size = 1,
|
||||
.valid.max_access_size = 4,
|
||||
.impl.min_access_size = 4,
|
||||
|
Loading…
Reference in New Issue
Block a user