removing camel case.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        count = sizeof(struct vnt_tx_short_buf_head) + skb->len;
 
        beacon_buffer->tx_byte_count = cpu_to_le16(count);
-       beacon_buffer->byPKTNO = context->pkt_no;
+       beacon_buffer->pkt_no = context->pkt_no;
        beacon_buffer->byType = 0x01;
 
        context->type = CONTEXT_BEACON_PACKET;
 
 
 struct vnt_beacon_buffer {
        u8 byType;
-       u8 byPKTNO;
+       u8 pkt_no;
        __le16 tx_byte_count;
        struct vnt_tx_short_buf_head short_head;
        struct ieee80211_mgmt mgmt_hdr;