]> Git Repo - linux.git/blobdiff - drivers/staging/bcm/HandleControlPacket.c
mmc: omap_hsmmc: consolidate error report handling of HSMMC IRQ
[linux.git] / drivers / staging / bcm / HandleControlPacket.c
index b058e30b2ca6f8d368353f2478c7cd58dafd9f71..25e5c68bfe8516d35c6ec338776fb4851cadbfd1 100644 (file)
@@ -11,9 +11,9 @@
  * Enqueue the control packet for Application.
  * @return None
  */
-static VOID handle_rx_control_packet(PMINI_ADAPTER Adapter, struct sk_buff *skb)
+static VOID handle_rx_control_packet(struct bcm_mini_adapter *Adapter, struct sk_buff *skb)
 {
-       PPER_TARANG_DATA pTarang = NULL;
+       struct bcm_tarang_data *pTarang = NULL;
        BOOLEAN HighPriorityMessage = FALSE;
        struct sk_buff *newPacket = NULL;
        CHAR cntrl_msg_mask_bit = 0;
@@ -154,7 +154,7 @@ static VOID handle_rx_control_packet(PMINI_ADAPTER Adapter, struct sk_buff *skb)
  * @ingroup ctrl_pkt_functions
  * Thread to handle control pkt reception
  */
-int control_packet_handler(PMINI_ADAPTER Adapter /* pointer to adapter object*/)
+int control_packet_handler(struct bcm_mini_adapter *Adapter /* pointer to adapter object*/)
 {
        struct sk_buff *ctrl_packet = NULL;
        unsigned long flags = 0;
@@ -213,8 +213,8 @@ int control_packet_handler(PMINI_ADAPTER Adapter /* pointer to adapter object*/)
 
 INT flushAllAppQ(void)
 {
-       PMINI_ADAPTER Adapter = GET_BCM_ADAPTER(gblpnetdev);
-       PPER_TARANG_DATA pTarang = NULL;
+       struct bcm_mini_adapter *Adapter = GET_BCM_ADAPTER(gblpnetdev);
+       struct bcm_tarang_data *pTarang = NULL;
        struct sk_buff *PacketToDrop = NULL;
        for (pTarang = Adapter->pTarangs; pTarang; pTarang = pTarang->next) {
                while (pTarang->RxAppControlHead != NULL) {
This page took 0.037688 seconds and 4 git commands to generate.