[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
@@ -4181,7 +4181,7 @@ static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
|
||||
}
|
||||
|
||||
info->params.encoding = new_encoding;
|
||||
info->params.crc_type = new_crctype;;
|
||||
info->params.crc_type = new_crctype;
|
||||
|
||||
/* if network interface up, reprogram hardware */
|
||||
if (info->netcount)
|
||||
|
||||
@@ -7770,7 +7770,7 @@ static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
|
||||
}
|
||||
|
||||
info->params.encoding = new_encoding;
|
||||
info->params.crc_type = new_crctype;;
|
||||
info->params.crc_type = new_crctype;
|
||||
|
||||
/* if network interface up, reprogram hardware */
|
||||
if (info->netcount)
|
||||
|
||||
@@ -1365,7 +1365,7 @@ static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
|
||||
}
|
||||
|
||||
info->params.encoding = new_encoding;
|
||||
info->params.crc_type = new_crctype;;
|
||||
info->params.crc_type = new_crctype;
|
||||
|
||||
/* if network interface up, reprogram hardware */
|
||||
if (info->netcount)
|
||||
|
||||
@@ -1650,7 +1650,7 @@ static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
|
||||
}
|
||||
|
||||
info->params.encoding = new_encoding;
|
||||
info->params.crc_type = new_crctype;;
|
||||
info->params.crc_type = new_crctype;
|
||||
|
||||
/* if network interface up, reprogram hardware */
|
||||
if (info->netcount)
|
||||
|
||||
@@ -456,7 +456,7 @@ static ssize_t set_temp_max(struct i2c_client *client, struct gl520_data *data,
|
||||
long v = simple_strtol(buf, NULL, 10);
|
||||
|
||||
mutex_lock(&data->update_lock);
|
||||
data->temp_max[n - 1] = TEMP_TO_REG(v);;
|
||||
data->temp_max[n - 1] = TEMP_TO_REG(v);
|
||||
gl520_write_value(client, reg, data->temp_max[n - 1]);
|
||||
mutex_unlock(&data->update_lock);
|
||||
return count;
|
||||
|
||||
@@ -53,7 +53,7 @@ static inline u8 _rtc8564_ctrl2(struct i2c_client *client)
|
||||
#define CTRL1(c) _rtc8564_ctrl1(c)
|
||||
#define CTRL2(c) _rtc8564_ctrl2(c)
|
||||
|
||||
static int debug;;
|
||||
static int debug;
|
||||
module_param(debug, int, S_IRUGO | S_IWUSR);
|
||||
|
||||
static struct i2c_driver rtc8564_driver;
|
||||
|
||||
@@ -175,7 +175,7 @@ ide_startstop_t ide_dma_intr (ide_drive_t *drive)
|
||||
if (rq->rq_disk) {
|
||||
ide_driver_t *drv;
|
||||
|
||||
drv = *(ide_driver_t **)rq->rq_disk->private_data;;
|
||||
drv = *(ide_driver_t **)rq->rq_disk->private_data;
|
||||
drv->end_request(drive, 1, rq->nr_sectors);
|
||||
} else
|
||||
ide_end_request(drive, 1, rq->nr_sectors);
|
||||
|
||||
@@ -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 */
|
||||
|
||||
@@ -2797,7 +2797,7 @@ mbox_post_sync_cmd(adapter_t *adapter, uint8_t raw_mbox[])
|
||||
// available within 1 second, assume FW is initializing and wait
|
||||
// for an extended amount of time
|
||||
if (mbox->numstatus == 0xFF) { // status not yet available
|
||||
udelay(25);;
|
||||
udelay(25);
|
||||
|
||||
for (i = 0; mbox->numstatus == 0xFF && i < 1000; i++) {
|
||||
rmb();
|
||||
|
||||
@@ -360,7 +360,7 @@ static int mts_scsi_host_reset (Scsi_Cmnd *srb)
|
||||
rc = usb_lock_device_for_reset(desc->usb_dev, desc->usb_intf);
|
||||
if (rc < 0)
|
||||
return FAILED;
|
||||
result = usb_reset_device(desc->usb_dev);;
|
||||
result = usb_reset_device(desc->usb_dev);
|
||||
if (rc)
|
||||
usb_unlock_device(desc->usb_dev);
|
||||
return result ? FAILED : SUCCESS;
|
||||
|
||||
@@ -1215,7 +1215,7 @@ static void hid_irq_out(struct urb *urb, struct pt_regs *regs)
|
||||
|
||||
if (hid->outhead != hid->outtail) {
|
||||
if (hid_submit_out(hid)) {
|
||||
clear_bit(HID_OUT_RUNNING, &hid->iofl);;
|
||||
clear_bit(HID_OUT_RUNNING, &hid->iofl);
|
||||
wake_up(&hid->wait);
|
||||
}
|
||||
spin_unlock_irqrestore(&hid->outlock, flags);
|
||||
|
||||
@@ -2080,7 +2080,7 @@ static void radeon_reinitialize_M9P(struct radeonfb_info *rinfo)
|
||||
OUTREG(0x2ec, 0x6332a3f0);
|
||||
mdelay(17);
|
||||
|
||||
OUTPLL(pllPPLL_REF_DIV, rinfo->pll.ref_div);;
|
||||
OUTPLL(pllPPLL_REF_DIV, rinfo->pll.ref_div);
|
||||
OUTPLL(pllPPLL_DIV_0, rinfo->save_regs[92]);
|
||||
|
||||
mdelay(40);
|
||||
|
||||
Reference in New Issue
Block a user