Author: jhb
Date: Thu Oct 17 23:48:29 2019
New Revision: 353707
URL: https://svnweb.freebsd.org/changeset/base/353707

Log:
  MFC 348472: Whitespace cleanups, no functional change.

Modified:
  stable/12/usr.sbin/bhyve/pci_emul.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/usr.sbin/bhyve/pci_emul.c
==============================================================================
--- stable/12/usr.sbin/bhyve/pci_emul.c Thu Oct 17 23:29:52 2019        
(r353706)
+++ stable/12/usr.sbin/bhyve/pci_emul.c Thu Oct 17 23:48:29 2019        
(r353707)
@@ -56,8 +56,8 @@ __FBSDID("$FreeBSD$");
 #include "pci_irq.h"
 #include "pci_lpc.h"
 
-#define CONF1_ADDR_PORT    0x0cf8
-#define CONF1_DATA_PORT    0x0cfc
+#define CONF1_ADDR_PORT           0x0cf8
+#define CONF1_DATA_PORT           0x0cfc
 
 #define CONF1_ENABLE      0x80000000ul
 
@@ -479,7 +479,7 @@ modify_bar_registration(struct pci_devinst *pi, int id
                        iop.handler = pci_emul_io_handler;
                        iop.arg = pi;
                        error = register_inout(&iop);
-               } else 
+               } else
                        error = unregister_inout(&iop);
                break;
        case PCIBAR_MEM32:
@@ -547,7 +547,7 @@ memen(struct pci_devinst *pi)
  * the address range decoded by the BAR register.
  */
 static void
-update_bar_address(struct  pci_devinst *pi, uint64_t addr, int idx, int type)
+update_bar_address(struct pci_devinst *pi, uint64_t addr, int idx, int type)
 {
        int decode;
 
@@ -673,7 +673,7 @@ pci_emul_alloc_pbar(struct pci_devinst *pdi, int idx, 
                pdi->pi_bar[idx + 1].type = PCIBAR_MEMHI64;
                pci_set_cfgdata32(pdi, PCIR_BAR(idx + 1), bar >> 32);
        }
-       
+
        cmd = pci_get_cfgdata16(pdi, PCIR_COMMAND);
        if ((cmd & enbit) != enbit)
                pci_set_cfgdata16(pdi, PCIR_COMMAND, cmd | enbit);
@@ -848,7 +848,7 @@ pci_emul_add_msixcap(struct pci_devinst *pi, int msgnu
 
        assert(msgnum >= 1 && msgnum <= MAX_MSIX_TABLE_ENTRIES);
        assert(barnum >= 0 && barnum <= PCIR_MAX_BAR_0);
-       
+
        tab_size = msgnum * MSIX_TABLE_ENTRY_SIZE;
 
        /* Align table size to nearest 4K */
@@ -1106,7 +1106,7 @@ init_pci(struct vmctx *ctx)
        for (bus = 0; bus < MAXBUSES; bus++) {
                if ((bi = pci_businfo[bus]) == NULL)
                        continue;
-               /* 
+               /*
                 * Keep track of the i/o and memory resources allocated to
                 * this bus.
                 */
@@ -1726,9 +1726,9 @@ pci_emul_cmd_changed(struct pci_devinst *pi, uint16_t 
                                        else
                                                unregister_bar(pi, i);
                                }
-                               break; 
+                               break;
                        default:
-                               assert(0); 
+                               assert(0);
                }
        }
 
@@ -1970,7 +1970,7 @@ INOUT_PORT(pci_cfgdata, CONF1_DATA_PORT+3, IOPORT_F_IN
 #define DIOSZ  8
 #define DMEMSZ 4096
 struct pci_emul_dsoftc {
-       uint8_t   ioregs[DIOSZ];
+       uint8_t   ioregs[DIOSZ];
        uint8_t   memregs[2][DMEMSZ];
 };
 
@@ -2062,7 +2062,7 @@ pci_emul_diow(struct vmctx *ctx, int vcpu, struct pci_
                } else {
                        printf("diow: memw unknown size %d\n", size);
                }
-               
+
                /*
                 * magic interrupt ??
                 */
@@ -2087,7 +2087,7 @@ pci_emul_dior(struct vmctx *ctx, int vcpu, struct pci_
                               offset, size);
                        return (0);
                }
-       
+
                value = 0;
                if (size == 1) {
                        value = sc->ioregs[offset];
@@ -2106,7 +2106,7 @@ pci_emul_dior(struct vmctx *ctx, int vcpu, struct pci_
                               offset, size);
                        return (0);
                }
-               
+
                i = baridx - 1;         /* 'memregs' index */
 
                if (size == 1) {
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to