[PATCH] s/;;/;/g
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
29afd49b72
commit
53b3531bbb
@@ -1727,7 +1727,7 @@ struct sk_buff *pMessage) /* pointer to send-message */
|
||||
pTxd->VDataHigh = (SK_U32) (PhysAddr >> 32);
|
||||
pTxd->pMBuf = pMessage;
|
||||
|
||||
pTxd->TBControl = Control | BMU_OWN | sk_frag->size;;
|
||||
pTxd->TBControl = Control | BMU_OWN | sk_frag->size;
|
||||
|
||||
/*
|
||||
** Do we have the last fragment?
|
||||
|
||||
@@ -1804,7 +1804,7 @@ struct sky2_rx_le {
|
||||
__le16 length;
|
||||
u8 ctrl;
|
||||
u8 opcode;
|
||||
} __attribute((packed));;
|
||||
} __attribute((packed));
|
||||
|
||||
struct sky2_status_le {
|
||||
__le32 status; /* also checksum */
|
||||
|
||||
@@ -332,7 +332,7 @@ mgt_le_to_cpu(int type, void *data)
|
||||
case OID_TYPE_ATTACH:{
|
||||
struct obj_attachment *attach = data;
|
||||
attach->id = le16_to_cpu(attach->id);
|
||||
attach->size = le16_to_cpu(attach->size);;
|
||||
attach->size = le16_to_cpu(attach->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_SSID:
|
||||
@@ -401,7 +401,7 @@ mgt_cpu_to_le(int type, void *data)
|
||||
case OID_TYPE_ATTACH:{
|
||||
struct obj_attachment *attach = data;
|
||||
attach->id = cpu_to_le16(attach->id);
|
||||
attach->size = cpu_to_le16(attach->size);;
|
||||
attach->size = cpu_to_le16(attach->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_SSID:
|
||||
|
||||
@@ -147,7 +147,7 @@ struct pdi {
|
||||
__le16 _len; /* length of ID and data, in words */
|
||||
__le16 _id; /* record ID */
|
||||
char data[0]; /* plug data */
|
||||
} __attribute__ ((packed));;
|
||||
} __attribute__ ((packed));
|
||||
|
||||
|
||||
/* Functions for access to little-endian data */
|
||||
|
||||
Reference in New Issue
Block a user