]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/hv/ChannelMgmt.c
Staging: hv: remove UINT8 and INT8 typedefs
[~andy/linux] / drivers / staging / hv / ChannelMgmt.c
index 9d8f4ef1e0b9428ea6ccf3ba2688124d9cf03a98..68f25805c3532685cac830ce8b8a8771a768821a 100644 (file)
@@ -396,8 +396,8 @@ VmbusChannelOnOffer(
        DPRINT_DBG(VMBUS, "channel object allocated - %p", newChannel);
 
        memcpy(&newChannel->OfferMsg, offer, sizeof(VMBUS_CHANNEL_OFFER_CHANNEL));
-       newChannel->MonitorGroup = (UINT8)offer->MonitorId / 32;
-       newChannel->MonitorBit = (UINT8)offer->MonitorId % 32;
+       newChannel->MonitorGroup = (u8)offer->MonitorId / 32;
+       newChannel->MonitorBit = (u8)offer->MonitorId % 32;
 
        // TODO: Make sure the offer comes from our parent partition
        WorkQueueQueueWorkItem(newChannel->ControlWQ, VmbusChannelProcessOffer, newChannel);