···229229 tid = ((a << IMAP_AID_SHIFT) |230230 (n << IMAP_NID_SHIFT));231231 tid &= (IMAP_AID_SAFARI |232232- IMAP_NID_SAFARI);;232232+ IMAP_NID_SAFARI);233233 }234234 } else {235235 tid = cpuid << IMAP_TID_SHIFT;
+1-1
arch/um/drivers/net_kern.c
···533533 char **error_out)534534{535535 char *end;536536- int n, err = -EINVAL;;536536+ int n, err = -EINVAL;537537538538 n = simple_strtoul(str, &end, 0);539539 if (end == str) {
···22392239 struct channel *ch = container_of(work, struct channel, tqueue);22402240 /* Called in response to a modem change event */22412241 if (ch && ch->magic == EPCA_MAGIC) {22422242- struct tty_struct *tty = tty_port_tty_get(&ch->port);;22422242+ struct tty_struct *tty = tty_port_tty_get(&ch->port);2243224322442244 if (tty && tty->driver_data) {22452245 if (test_and_clear_bit(EPCA_EVENT_HANGUP, &ch->event)) {
+1-1
drivers/gpu/drm/i915/intel_dp.c
···232232 for (try = 0; try < 5; try++) {233233 /* Load the send data into the aux channel data registers */234234 for (i = 0; i < send_bytes; i += 4) {235235- uint32_t d = pack_aux(send + i, send_bytes - i);;235235+ uint32_t d = pack_aux(send + i, send_bytes - i);236236237237 I915_WRITE(ch_data + i, d);238238 }
···25562556 if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))25572557 dev->mdio_ph = 0;25582558 if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))25592559- dev->zmii_ph = 0;;25592559+ dev->zmii_ph = 0;25602560 if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))25612561- dev->zmii_port = 0xffffffff;;25612561+ dev->zmii_port = 0xffffffff;25622562 if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))25632563- dev->rgmii_ph = 0;;25632563+ dev->rgmii_ph = 0;25642564 if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))25652565- dev->rgmii_port = 0xffffffff;;25652565+ dev->rgmii_port = 0xffffffff;25662566 if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))25672567 dev->fifo_entry_size = 16;25682568 if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
+1-1
drivers/net/igb/igb_main.c
···39663966 /* VFs are limited to using the MTA hash table for their multicast39673967 * addresses */39683968 for (i = 0; i < n; i++)39693969- vf_data->vf_mc_hashes[i] = hash_list[i];;39693969+ vf_data->vf_mc_hashes[i] = hash_list[i];3970397039713971 /* Flush and reset the mta with the new values */39723972 igb_set_rx_mode(adapter->netdev);
···213213 unsigned bits = ust->bits_per_word;214214 unsigned bytes;215215 u16 val, w;216216- int status = 0;;216216+ int status = 0;217217218218 if (!t->tx_buf && !t->rx_buf)219219 return 0;
···710710711711 fbi->clk = clk_get(&pdev->dev, NULL);712712 if (IS_ERR(fbi->clk)) {713713- ret = PTR_ERR(fbi->clk);;713713+ ret = PTR_ERR(fbi->clk);714714 dev_err(&pdev->dev, "unable to get clock: %d\n", ret);715715 goto failed_getclock;716716 }
+1-1
drivers/video/s3c2410fb.c
···11191119 int ret = platform_driver_register(&s3c2410fb_driver);1120112011211121 if (ret == 0)11221122- ret = platform_driver_register(&s3c2412fb_driver);;11221122+ ret = platform_driver_register(&s3c2412fb_driver);1123112311241124 return ret;11251125}
+1-1
drivers/xen/balloon.c
···214214 page = balloon_first_page();215215 for (i = 0; i < nr_pages; i++) {216216 BUG_ON(page == NULL);217217- frame_list[i] = page_to_pfn(page);;217217+ frame_list[i] = page_to_pfn(page);218218 page = balloon_next_page(page);219219 }220220
+1-1
fs/autofs/dirhash.c
···9090 DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name));9191 continue;9292 }9393- while (d_mountpoint(path.dentry) && follow_down(&path));9393+ while (d_mountpoint(path.dentry) && follow_down(&path))9494 ;9595 umount_ok = may_umount(path.mnt);9696 path_put(&path);
···142142 rc = dns_resolve_server_name_to_ip(*devname, &srvIP);143143 if (rc != 0) {144144 cERROR(1, ("%s: Failed to resolve server part of %s to IP: %d",145145- __func__, *devname, rc));;145145+ __func__, *devname, rc));146146 goto compose_mount_options_err;147147 }148148 /* md_len = strlen(...) + 12 for 'sep+prefixpath='
+1-1
fs/nfs/callback_xdr.c
···222222223223 p = read_buf(xdr, len);224224 if (unlikely(p == NULL))225225- return htonl(NFS4ERR_RESOURCE);;225225+ return htonl(NFS4ERR_RESOURCE);226226227227 memcpy(sid->data, p, len);228228 return 0;
+1-1
fs/ocfs2/quota_global.c
···154154 err = -EIO;155155 mlog_errno(err);156156 }157157- return err;;157157+ return err;158158}159159160160/* Read data from global quotafile - avoid pagecache and such because we cannot