mirror of https://github.com/xqemu/xqemu.git
hw: Fix typos found by codespell
Signed-off-by: Stefan Weil <sw@weilnetz.de> Acked-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
5bb8590d37
commit
b12227afb1
|
@ -27,7 +27,7 @@
|
||||||
* this it needs a backend to manage the datas, the same as other
|
* this it needs a backend to manage the datas, the same as other
|
||||||
* memory-related devices. In this case as the backend is so trivial we
|
* memory-related devices. In this case as the backend is so trivial we
|
||||||
* have merged it with the frontend instead of creating and maintaining a
|
* have merged it with the frontend instead of creating and maintaining a
|
||||||
* seperate backend.
|
* separate backend.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
|
@ -79,7 +79,7 @@ static void generic_loader_realize(DeviceState *dev, Error **errp)
|
||||||
"loading memory values");
|
"loading memory values");
|
||||||
return;
|
return;
|
||||||
} else if (!s->data_len) {
|
} else if (!s->data_len) {
|
||||||
/* We cant' check for !data here as a value of 0 is still valid. */
|
/* We can't check for !data here as a value of 0 is still valid. */
|
||||||
error_setg(errp, "Both data and data-len must be specified");
|
error_setg(errp, "Both data and data-len must be specified");
|
||||||
return;
|
return;
|
||||||
} else if (s->data_len > 8) {
|
} else if (s->data_len > 8) {
|
||||||
|
|
|
@ -711,7 +711,7 @@ static void get_pci_host_devaddr(Object *obj, Visitor *v, const char *name,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Catch "invalid" device reference from vfio-pci and allow the
|
* Catch "invalid" device reference from vfio-pci and allow the
|
||||||
* default buffer representing the non-existant device to be used.
|
* default buffer representing the non-existent device to be used.
|
||||||
*/
|
*/
|
||||||
if (~addr->domain || ~addr->bus || ~addr->slot || ~addr->function) {
|
if (~addr->domain || ~addr->bus || ~addr->slot || ~addr->function) {
|
||||||
rc = snprintf(buffer, sizeof(buffer), "%04x:%02x:%02x.%0d",
|
rc = snprintf(buffer, sizeof(buffer), "%04x:%02x:%02x.%0d",
|
||||||
|
|
|
@ -555,7 +555,7 @@ static void xlnx_dp_recreate_surface(XlnxDPState *s)
|
||||||
if ((width != 0) && (height != 0)) {
|
if ((width != 0) && (height != 0)) {
|
||||||
/*
|
/*
|
||||||
* As dpy_gfx_replace_surface calls qemu_free_displaysurface on the
|
* As dpy_gfx_replace_surface calls qemu_free_displaysurface on the
|
||||||
* surface we need to be carefull and don't free the surface associated
|
* surface we need to be careful and don't free the surface associated
|
||||||
* to the console or double free will happen.
|
* to the console or double free will happen.
|
||||||
*/
|
*/
|
||||||
if (s->bout_plane.surface != current_console_surface) {
|
if (s->bout_plane.surface != current_console_surface) {
|
||||||
|
@ -1160,7 +1160,7 @@ static void xlnx_dp_update_display(void *opaque)
|
||||||
*/
|
*/
|
||||||
if (!xlnx_dpdma_start_operation(s->dpdma, 3, false)) {
|
if (!xlnx_dpdma_start_operation(s->dpdma, 3, false)) {
|
||||||
/*
|
/*
|
||||||
* An error occured don't do anything with the data..
|
* An error occurred don't do anything with the data..
|
||||||
* Trigger an underflow interrupt.
|
* Trigger an underflow interrupt.
|
||||||
*/
|
*/
|
||||||
s->core_registers[DP_INT_STATUS] |= (1 << 21);
|
s->core_registers[DP_INT_STATUS] |= (1 << 21);
|
||||||
|
|
|
@ -1777,7 +1777,7 @@ static int pc_apic_cmp(const void *a, const void *b)
|
||||||
|
|
||||||
/* returns pointer to CPUArchId descriptor that matches CPU's apic_id
|
/* returns pointer to CPUArchId descriptor that matches CPU's apic_id
|
||||||
* in pcms->possible_cpus->cpus, if pcms->possible_cpus->cpus has no
|
* in pcms->possible_cpus->cpus, if pcms->possible_cpus->cpus has no
|
||||||
* entry correponding to CPU's apic_id returns NULL.
|
* entry corresponding to CPU's apic_id returns NULL.
|
||||||
*/
|
*/
|
||||||
static CPUArchId *pc_find_cpu_slot(PCMachineState *pcms, CPUState *cpu,
|
static CPUArchId *pc_find_cpu_slot(PCMachineState *pcms, CPUState *cpu,
|
||||||
int *idx)
|
int *idx)
|
||||||
|
|
|
@ -896,7 +896,7 @@ static ssize_t gem_receive(NetClientState *nc, const uint8_t *buf, size_t size)
|
||||||
|
|
||||||
DB_PRINT("config bufsize: %d packet size: %ld\n", rxbufsize, size);
|
DB_PRINT("config bufsize: %d packet size: %ld\n", rxbufsize, size);
|
||||||
|
|
||||||
/* Find which queue we are targetting */
|
/* Find which queue we are targeting */
|
||||||
q = get_queue_from_screen(s, rxbuf_ptr, rxbufsize);
|
q = get_queue_from_screen(s, rxbuf_ptr, rxbufsize);
|
||||||
|
|
||||||
while (bytes_to_copy) {
|
while (bytes_to_copy) {
|
||||||
|
|
|
@ -105,7 +105,7 @@ typedef struct VIOsPAPRVLANDevice {
|
||||||
uint32_t add_buf_ptr, use_buf_ptr, rx_bufs;
|
uint32_t add_buf_ptr, use_buf_ptr, rx_bufs;
|
||||||
hwaddr rxq_ptr;
|
hwaddr rxq_ptr;
|
||||||
QEMUTimer *rxp_timer;
|
QEMUTimer *rxp_timer;
|
||||||
uint32_t compat_flags; /* Compatability flags for migration */
|
uint32_t compat_flags; /* Compatibility flags for migration */
|
||||||
RxBufPool *rx_pool[RX_MAX_POOLS]; /* Receive buffer descriptor pools */
|
RxBufPool *rx_pool[RX_MAX_POOLS]; /* Receive buffer descriptor pools */
|
||||||
} VIOsPAPRVLANDevice;
|
} VIOsPAPRVLANDevice;
|
||||||
|
|
||||||
|
@ -559,7 +559,7 @@ static target_long spapr_vlan_add_rxbuf_to_pool(VIOsPAPRVLANDevice *dev,
|
||||||
if (pool < 0) {
|
if (pool < 0) {
|
||||||
/*
|
/*
|
||||||
* No matching pool found? Try to use a new one. If the guest used all
|
* No matching pool found? Try to use a new one. If the guest used all
|
||||||
* pools before, but changed the size of one pool inbetween, we might
|
* pools before, but changed the size of one pool in the meantime, we might
|
||||||
* need to recycle that pool here (if it's empty already). Thus scan
|
* need to recycle that pool here (if it's empty already). Thus scan
|
||||||
* all buffer pools now, starting with the last (likely empty) one.
|
* all buffer pools now, starting with the last (likely empty) one.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -59,7 +59,7 @@ static uint32_t set_isolation_state(sPAPRDRConnector *drc,
|
||||||
trace_spapr_drc_set_isolation_state(get_index(drc), state);
|
trace_spapr_drc_set_isolation_state(get_index(drc), state);
|
||||||
|
|
||||||
if (state == SPAPR_DR_ISOLATION_STATE_UNISOLATED) {
|
if (state == SPAPR_DR_ISOLATION_STATE_UNISOLATED) {
|
||||||
/* cannot unisolate a non-existant resource, and, or resources
|
/* cannot unisolate a non-existent resource, and, or resources
|
||||||
* which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5)
|
* which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5)
|
||||||
*/
|
*/
|
||||||
if (!drc->dev ||
|
if (!drc->dev ||
|
||||||
|
|
|
@ -183,8 +183,8 @@ enum ZpciIoatDtype {
|
||||||
* may enter an error state
|
* may enter an error state
|
||||||
* blocked: ignore all DMA and interrupts; transition back to enabled or from
|
* blocked: ignore all DMA and interrupts; transition back to enabled or from
|
||||||
* error state via mpcifc
|
* error state via mpcifc
|
||||||
* error: an error occured; transition back to enabled via mpcifc
|
* error: an error occurred; transition back to enabled via mpcifc
|
||||||
* permanent error: an unrecoverable error occured; transition to standby via
|
* permanent error: an unrecoverable error occurred; transition to standby via
|
||||||
* sclp deconfigure
|
* sclp deconfigure
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
|
|
@ -1093,7 +1093,7 @@ static MTPData *usb_mtp_get_object_prop_value(MTPState *s, MTPControl *c,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case PROP_PERSISTENT_UNIQUE_OBJECT_IDENTIFIER:
|
case PROP_PERSISTENT_UNIQUE_OBJECT_IDENTIFIER:
|
||||||
/* Should be persistant between sessions,
|
/* Should be persistent between sessions,
|
||||||
* but using our objedt ID is "good enough"
|
* but using our objedt ID is "good enough"
|
||||||
* for now */
|
* for now */
|
||||||
usb_mtp_add_u64(d, 0x0000000000000000);
|
usb_mtp_add_u64(d, 0x0000000000000000);
|
||||||
|
|
|
@ -1171,7 +1171,7 @@ static int vfio_pci_igd_host_init(VFIOPCIDevice *vdev,
|
||||||
* IGD LPC/ISA bridge support code. The vBIOS needs this, but we can't write
|
* IGD LPC/ISA bridge support code. The vBIOS needs this, but we can't write
|
||||||
* arbitrary values into just any bridge, so we must create our own. We try
|
* arbitrary values into just any bridge, so we must create our own. We try
|
||||||
* to handle if the user has created it for us, which they might want to do
|
* to handle if the user has created it for us, which they might want to do
|
||||||
* to enable multifuction so we don't occupy the whole PCI slot.
|
* to enable multifunction so we don't occupy the whole PCI slot.
|
||||||
*/
|
*/
|
||||||
static void vfio_pci_igd_lpc_bridge_realize(PCIDevice *pdev, Error **errp)
|
static void vfio_pci_igd_lpc_bridge_realize(PCIDevice *pdev, Error **errp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -786,7 +786,7 @@ static void virtio_crypto_device_realize(DeviceState *dev, Error **errp)
|
||||||
vcrypto->max_queues = MAX(vcrypto->cryptodev->conf.peers.queues, 1);
|
vcrypto->max_queues = MAX(vcrypto->cryptodev->conf.peers.queues, 1);
|
||||||
if (vcrypto->max_queues + 1 > VIRTIO_QUEUE_MAX) {
|
if (vcrypto->max_queues + 1 > VIRTIO_QUEUE_MAX) {
|
||||||
error_setg(errp, "Invalid number of queues (= %" PRIu32 "), "
|
error_setg(errp, "Invalid number of queues (= %" PRIu32 "), "
|
||||||
"must be a postive integer less than %d.",
|
"must be a positive integer less than %d.",
|
||||||
vcrypto->max_queues, VIRTIO_QUEUE_MAX);
|
vcrypto->max_queues, VIRTIO_QUEUE_MAX);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue