struct hfa384x_usb_rmemreq rmemreq;
 } __packed;
 
-typedef union hfa384x_usbin {
+union hfa384x_usbin {
        __le16 type;
        struct hfa384x_usb_rxfrm rxfrm;
        struct hfa384x_usb_txfrm txfrm;
        struct hfa384x_usb_bufavail bufavail;
        struct hfa384x_usb_error usberror;
        u8 boguspad[3000];
-} __packed hfa384x_usbin_t;
+} __packed;
 
 /*--------------------------------------------------------------------
  * PD record structures.
 
        size_t outbufsize;
        union hfa384x_usbout outbuf;    /* pkt buf for OUT */
-       hfa384x_usbin_t inbuf;  /* pkt buf for IN(a copy) */
+       union hfa384x_usbin inbuf;      /* pkt buf for IN(a copy) */
 
        CTLX_STATE state;       /* Tracks running state */
 
 
 static void hfa384x_usbin_callback(struct urb *urb);
 
 static void
-hfa384x_usbin_txcompl(struct wlandevice *wlandev, hfa384x_usbin_t *usbin);
+hfa384x_usbin_txcompl(struct wlandevice *wlandev, union hfa384x_usbin *usbin);
 
 static void hfa384x_usbin_rx(struct wlandevice *wlandev, struct sk_buff *skb);
 
-static void hfa384x_usbin_info(struct wlandevice *wlandev, hfa384x_usbin_t *usbin);
+static void hfa384x_usbin_info(struct wlandevice *wlandev, union hfa384x_usbin *usbin);
 
-static void hfa384x_usbin_ctlx(hfa384x_t *hw, hfa384x_usbin_t *usbin,
+static void hfa384x_usbin_ctlx(hfa384x_t *hw, union hfa384x_usbin *usbin,
                               int urb_status);
 
 /*---------------------------------------------------*/
        struct sk_buff *skb;
        int result;
 
-       skb = dev_alloc_skb(sizeof(hfa384x_usbin_t));
+       skb = dev_alloc_skb(sizeof(union hfa384x_usbin));
        if (!skb) {
                result = -ENOMEM;
                goto done;
        /* Post the IN urb */
        usb_fill_bulk_urb(&hw->rx_urb, hw->usb,
                          hw->endp_in,
-                         skb->data, sizeof(hfa384x_usbin_t),
+                         skb->data, sizeof(union hfa384x_usbin),
                          hfa384x_usbin_callback, hw->wlandev);
 
        hw->rx_urb_skb = skb;
 {
        struct wlandevice *wlandev = urb->context;
        hfa384x_t *hw;
-       hfa384x_usbin_t *usbin = (hfa384x_usbin_t *)urb->transfer_buffer;
+       union hfa384x_usbin *usbin = (union hfa384x_usbin *)urb->transfer_buffer;
        struct sk_buff *skb = NULL;
        int result;
        int urb_status;
 * Call context:
 *      interrupt
 ----------------------------------------------------------------*/
-static void hfa384x_usbin_ctlx(hfa384x_t *hw, hfa384x_usbin_t *usbin,
+static void hfa384x_usbin_ctlx(hfa384x_t *hw, union hfa384x_usbin *usbin,
                               int urb_status)
 {
        hfa384x_usbctlx_t *ctlx;
 *      interrupt
 ----------------------------------------------------------------*/
 static void hfa384x_usbin_txcompl(struct wlandevice *wlandev,
-                                 hfa384x_usbin_t *usbin)
+                                 union hfa384x_usbin *usbin)
 {
        u16 status;
 
 ----------------------------------------------------------------*/
 static void hfa384x_usbin_rx(struct wlandevice *wlandev, struct sk_buff *skb)
 {
-       hfa384x_usbin_t *usbin = (hfa384x_usbin_t *)skb->data;
+       union hfa384x_usbin *usbin = (union hfa384x_usbin *)skb->data;
        hfa384x_t *hw = wlandev->priv;
        int hdrlen;
        struct p80211_rxmeta *rxmeta;
 * Call context:
 *      interrupt
 ----------------------------------------------------------------*/
-static void hfa384x_usbin_info(struct wlandevice *wlandev, hfa384x_usbin_t *usbin)
+static void hfa384x_usbin_info(struct wlandevice *wlandev,
+                              union hfa384x_usbin *usbin)
 {
        usbin->infofrm.info.framelen =
            le16_to_cpu(usbin->infofrm.info.framelen);