VirtualBox

Changeset 56316 in vbox for trunk


Ignore:
Timestamp:
Jun 9, 2015 10:52:56 PM (9 years ago)
Author:
vboxsync
Message:

whitespace

Location:
trunk/src/VBox/Devices
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostPulseAudio.cpp

    r56161 r56316  
    11561156    PDRVHOSTPULSEAUDIO pThis = PDMINS_2_DATA(pDrvIns, PDRVHOSTPULSEAUDIO);
    11571157    LogRel(("Audio: Initializing PulseAudio driver\n"));
    1158    
     1158
    11591159    CFGMR3QueryStringAlloc(pCfg, "StreamName", &pThis->pszStreamName);
    11601160
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r56292 r56316  
    35723572            {
    35733573                rc = PGMHandlerPhysicalRegister(PDMDevHlpGetVM(pDevIns), GCPhysAddress, GCPhysAddress + (VMSVGA_FIFO_SIZE - 1),
    3574                                                 pThis->svga.hFifoAccessHandlerType, pThis, NIL_RTR0PTR, NIL_RTRCPTR, 
     3574                                                pThis->svga.hFifoAccessHandlerType, pThis, NIL_RTR0PTR, NIL_RTRCPTR,
    35753575                                                "VMSVGA FIFO");
    35763576                AssertRC(rc);
  • trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp

    r56097 r56316  
    110110        RT_ZERO(pVBVAData->guest.pVBVA->hostFlags);
    111111    }
    112    
     112
    113113    RTMemFree(pVBVAData->partialRecord.pu8);
    114114
  • trunk/src/VBox/Devices/Graphics/testcase/dump-vmwgfx.c

    r54571 r56316  
    8080    /* Skipped if DRM_VMW_PARAM_MAX_MOB_MEMORY is read. */
    8181    struct SVGA3dCapsRecordHeader header;
    82     uint32_t data[1];   
     82    uint32_t data[1];
    8383};
    8484
     
    341341    }
    342342    else
    343         printf("%32s: failed: rc=%d errno=%d (%s)\n", pszParam, rc, errno, strerror(errno));   
     343        printf("%32s: failed: rc=%d errno=%d (%s)\n", pszParam, rc, errno, strerror(errno));
    344344    return rc;
    345345}
     
    596596    if (argc == 2)
    597597        pszDev = argv[1];
    598    
     598
    599599    int fd = open(pszDev, O_RDWR);
    600600    if (fd != -1)
     
    607607         */
    608608        rcExit = Dump3DParameters(fd, rcExit);
    609    
     609
    610610        /*
    611611         * 3D capabilities.
     
    625625        rcExit = 1;
    626626    }
    627    
     627
    628628    return rcExit;
    629629}
  • trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp

    r56292 r56316  
    12601260 * Look up specified address in the network's blacklist.
    12611261 *
    1262  * @param pNetwork      The network. 
     1262 * @param pNetwork      The network.
    12631263 * @param enmType       The address type.
    12641264 * @param pAddr         The address.
     
    12891289 * Deletes specified address from network's blacklist.
    12901290 *
    1291  * @param pNetwork      The network. 
     1291 * @param pNetwork      The network.
    12921292 * @param enmType       The address type.
    12931293 * @param pAddr         The address.
     
    13221322 * Adds specified address from network's blacklist.
    13231323 *
    1324  * @param pNetwork      The network. 
     1324 * @param pNetwork      The network.
    13251325 * @param enmType       The address type.
    13261326 * @param pAddr         The address.
     
    13481348    {
    13491349        /* shift */
    1350         memmove(pCache->pbEntries, pCache->pbEntries + pCache->cbEntry, 
     1350        memmove(pCache->pbEntries, pCache->pbEntries + pCache->cbEntry,
    13511351                pCache->cbEntry * (pCache->cEntries - 1));
    13521352        --pCache->cEntries;
     
    14051405                     __FUNCTION__, &pAddr->IPv6));
    14061406                break;
    1407             default: 
     1407            default:
    14081408                Log(("%s: spoofing attempt for %.*Rhxs (type %d)\n",
    14091409                     __FUNCTION__, cbAddr, pAddr, enmAddrType));
  • trunk/src/VBox/Devices/PC/BIOS/floppy.c

    r56292 r56316  
    11161116
    11171117        // Format type (AL)
    1118         // 00 - NOT USED   
    1119         // 01 - DISKETTE 360K IN 360K DRIVE   
     1118        // 00 - NOT USED
     1119        // 01 - DISKETTE 360K IN 360K DRIVE
    11201120        // 02 - DISKETTE 360K IN 1.2M DRIVE
    11211121        // 03 - DISKETTE 1.2M IN 1.2M DRIVE
     
    11311131            return;
    11321132        }
    1133    
     1133
    11341134        // see if drive exists
    11351135        if (floppy_drive_exists(drive) == 0) {
     
    12161216                SET_AH(0x0C); // drive/media type unknown
    12171217                set_diskette_ret_status(0x0C);
    1218                 SET_CF(); 
     1218                SET_CF();
    12191219                return;
    12201220            }
     
    12271227        else
    12281228            drive_type &= 0x0f;
    1229      
     1229
    12301230        // Get current drive state. Set 'base_address' to media status offset address
    12311231        base_address = (drive) ? 0x0091 : 0x0090;
     
    12421242            break;
    12431243        case 2: // 1.2MB, 5.25"
    1244             if (track == 39 && num_sectors == 9) {          // 360K disk in 1.2M drive 
     1244            if (track == 39 && num_sectors == 9) {          // 360K disk in 1.2M drive
    12451245                media_state |= 0x70; // 0111 0000 (media type established, double stepping, 300 kbps)
    12461246            } else if (track == 79 && num_sectors == 15) {  // 1.2M disk in 1.2M drive
     
    12521252                media_state |= 0x90; // 1001 0000 (media type established, 250 kbps)
    12531253
    1254                         break;
     1254                        break;
    12551255        case 4: // 1.44MB, 3.5"
    12561256            if (track == 79) {
     
    12601260                    media_state |= 0x10; // 0001 0000 (media type established, 500 kbps)
    12611261                }
    1262             } 
     1262            }
    12631263            break;
    12641264        case 5: // 2.88MB, 3.5"
     
    12831283            SET_AH(0x0C);
    12841284            set_diskette_ret_status(0x0C);
    1285             SET_CF(); 
     1285            SET_CF();
    12861286            return;
    12871287        }
     
    12901290        write_byte(0x0040, base_address, media_state);
    12911291
    1292         // set es & di to point to 11 byte diskette param table in ROM 
     1292        // set es & di to point to 11 byte diskette param table in ROM
    12931293        ES = 0xF000;    // @todo: any way to make this relocatable?
    12941294        DI = get_floppy_dpt(drive_type);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette