summary refs log tree commit diff stats
path: root/include/hw/arm/soc_dma.h
diff options
context:
space:
mode:
authorSantiago Monserrat Campanello <santimonserr@gmail.com>2025-05-14 14:29:47 +0100
committerPeter Maydell <peter.maydell@linaro.org>2025-05-14 14:29:47 +0100
commitedf838289b7fc698013f18d7a8a83b6b50ec41bb (patch)
treeaff97e1b503c4a9155134b2d051f33e2462fd040 /include/hw/arm/soc_dma.h
parent6414b7709d404bf410da360bab865133832ade85 (diff)
downloadfocaccia-qemu-edf838289b7fc698013f18d7a8a83b6b50ec41bb.tar.gz
focaccia-qemu-edf838289b7fc698013f18d7a8a83b6b50ec41bb.zip
hw/arm: Replace TABs for spaces in OMAP board and device code
In hw/arm and include/hw/arm, some source files for the OMAP SoC
and the sx1 boards that are our only remaining OMAP boards still
have hard-coded tabs (almost entirely used for the indent on
inline comments, not for actual code indent).

Replace the tabs with spaces using vim :retab. I used 4 spaces
except in some defines and comments where I tried to put
everything aligned in the same column for better readability.

This commit is a purely whitespace-only change.

Signed-off-by: Santiago Monserrat Campanello <santimonserr@gmail.com>
Message-id: 20250505131130.82206-1-santimonserr@gmail.com
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/373
[PMM: expanded commit message]
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/arm/soc_dma.h')
-rw-r--r--include/hw/arm/soc_dma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/arm/soc_dma.h b/include/hw/arm/soc_dma.h
index e93a7499a8..bcdb91425a 100644
--- a/include/hw/arm/soc_dma.h
+++ b/include/hw/arm/soc_dma.h
@@ -54,7 +54,7 @@ struct soc_dma_ch_s {
     int bytes;
     /* Initialised by the DMA module, call soc_dma_ch_update after writing.  */
     enum soc_dma_access_type type[2];
-    hwaddr vaddr[2];	/* Updated by .transfer_fn().  */
+    hwaddr vaddr[2];    /* Updated by .transfer_fn().  */
     /* Private */
     void *paddr[2];
     soc_dma_io_t io_fn[2];
@@ -70,7 +70,7 @@ struct soc_dma_ch_s {
 struct soc_dma_s {
     /* Following fields are set by the SoC DMA module and can be used
      * by anybody.  */
-    uint64_t drqbmp;	/* Is zeroed by soc_dma_reset() */
+    uint64_t drqbmp;    /* Is zeroed by soc_dma_reset() */
     qemu_irq *drq;
     void *opaque;
     int64_t freq;