static void
 l1oip_socket_parse(struct l1oip *hc, struct sockaddr_in *sin, u8 *buf, int len)
 {
-       u32                     id;
+       u32                     packet_id;
        u8                      channel;
        u8                      remotecodec;
        u16                     timebase;
        }
 
        /* get id flag */
-       id = (*buf>>4)&1;
+       packet_id = (*buf>>4)&1;
 
        /* check coding */
        remotecodec = (*buf) & 0x0f;
        buf++;
        len--;
 
-       /* check id */
-       if (id) {
+       /* check packet_id */
+       if (packet_id) {
                if (!hc->id) {
                        printk(KERN_WARNING "%s: packet error - packet has id "
-                               "0x%x, but we have not\n", __func__, id);
+                               "0x%x, but we have not\n", __func__, packet_id);
                        return;
                }
                if (len < 4) {
                                "short for ID value\n", __func__);
                        return;
                }
-               id = (*buf++) << 24;
-               id += (*buf++) << 16;
-               id += (*buf++) << 8;
-               id += (*buf++);
+               packet_id = (*buf++) << 24;
+               packet_id += (*buf++) << 16;
+               packet_id += (*buf++) << 8;
+               packet_id += (*buf++);
                len -= 4;
 
-               if (id != hc->id) {
+               if (packet_id != hc->id) {
                        printk(KERN_WARNING "%s: packet error - ID mismatch, "
                                "got 0x%x, we 0x%x\n",
-                               __func__, id, hc->id);
+                               __func__, packet_id, hc->id);
                        return;
                }
        } else {