[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:
Alexey Dobriyan 2006-03-24 03:16:13 -08:00 committed by Linus Torvalds
parent 29afd49b72
commit 53b3531bbb
31 changed files with 37 additions and 37 deletions

View file

@ -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:

View file

@ -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 */