aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/serial/io_edgeport.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2010-10-24 16:41:39 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-10-24 16:41:39 -0400
commit229aebb873e29726b91e076161649cf45154b0bf (patch)
treeacc02a3702215bce8d914f4c8cc3d7a1382b1c67 /drivers/usb/serial/io_edgeport.c
parent8de547e1824437f3c6af180d3ed2162fa4b3f389 (diff)
parent50a23e6eec6f20d55a3a920e47adb455bff6046e (diff)
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) Update broken web addresses in arch directory. Update broken web addresses in the kernel. Revert "drivers/usb: Remove unnecessary return's from void functions" for musb gadget Revert "Fix typo: configuation => configuration" partially ida: document IDA_BITMAP_LONGS calculation ext2: fix a typo on comment in ext2/inode.c drivers/scsi: Remove unnecessary casts of private_data drivers/s390: Remove unnecessary casts of private_data net/sunrpc/rpc_pipe.c: Remove unnecessary casts of private_data drivers/infiniband: Remove unnecessary casts of private_data drivers/gpu/drm: Remove unnecessary casts of private_data kernel/pm_qos_params.c: Remove unnecessary casts of private_data fs/ecryptfs: Remove unnecessary casts of private_data fs/seq_file.c: Remove unnecessary casts of private_data arm: uengine.c: remove C99 comments arm: scoop.c: remove C99 comments Fix typo configue => configure in comments Fix typo: configuation => configuration Fix typo interrest[ing|ed] => interest[ing|ed] Fix various typos of valid in comments ... Fix up trivial conflicts in: drivers/char/ipmi/ipmi_si_intf.c drivers/usb/gadget/rndis.c net/irda/irnet/irnet_ppp.c
Diffstat (limited to 'drivers/usb/serial/io_edgeport.c')
-rw-r--r--drivers/usb/serial/io_edgeport.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c
index a0ab78ada25e..cd769ef24f8a 100644
--- a/drivers/usb/serial/io_edgeport.c
+++ b/drivers/usb/serial/io_edgeport.c
@@ -1467,8 +1467,6 @@ static void edge_throttle(struct tty_struct *tty)
1467 if (status != 0) 1467 if (status != 0)
1468 return; 1468 return;
1469 } 1469 }
1470
1471 return;
1472} 1470}
1473 1471
1474 1472
@@ -1775,8 +1773,6 @@ static void edge_break(struct tty_struct *tty, int break_state)
1775 dbg("%s - error sending break set/clear command.", 1773 dbg("%s - error sending break set/clear command.",
1776 __func__); 1774 __func__);
1777 } 1775 }
1778
1779 return;
1780} 1776}
1781 1777
1782 1778
@@ -2047,7 +2043,6 @@ static void process_rcvd_status(struct edgeport_serial *edge_serial,
2047 dbg("%s - Unrecognized IOSP status code %u", __func__, code); 2043 dbg("%s - Unrecognized IOSP status code %u", __func__, code);
2048 break; 2044 break;
2049 } 2045 }
2050 return;
2051} 2046}
2052 2047
2053 2048
@@ -2100,8 +2095,6 @@ static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)
2100 2095
2101 /* Save the new modem status */ 2096 /* Save the new modem status */
2102 edge_port->shadowMSR = newMsr & 0xf0; 2097 edge_port->shadowMSR = newMsr & 0xf0;
2103
2104 return;
2105} 2098}
2106 2099
2107 2100
@@ -2148,8 +2141,6 @@ static void handle_new_lsr(struct edgeport_port *edge_port, __u8 lsrData,
2148 icount->parity++; 2141 icount->parity++;
2149 if (newLsr & LSR_FRM_ERR) 2142 if (newLsr & LSR_FRM_ERR)
2150 icount->frame++; 2143 icount->frame++;
2151
2152 return;
2153} 2144}
2154 2145
2155 2146
@@ -2725,7 +2716,6 @@ static void change_port_settings(struct tty_struct *tty,
2725 baud = tty_termios_baud_rate(old_termios); 2716 baud = tty_termios_baud_rate(old_termios);
2726 tty_encode_baud_rate(tty, baud, baud); 2717 tty_encode_baud_rate(tty, baud, baud);
2727 } 2718 }
2728 return;
2729} 2719}
2730 2720
2731 2721
@@ -2927,7 +2917,6 @@ static void load_application_firmware(struct edgeport_serial *edge_serial)
2927 0x40, 0x4000, 0x0001, NULL, 0, 3000); 2917 0x40, 0x4000, 0x0001, NULL, 0, 3000);
2928 2918
2929 release_firmware(fw); 2919 release_firmware(fw);
2930 return;
2931} 2920}
2932 2921
2933 2922