aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c
diff options
context:
space:
mode:
authorOpenWrt Developers <openwrt-devel@openwrt.org>2008-12-16 19:39:34 +0000
committerOpenWrt Developers <openwrt-devel@openwrt.org>2008-12-16 19:39:34 +0000
commit3e51b0e5b0d0617eef1071c78f84340fd7a0e103 (patch)
treebef25e22147228d75c8821e51e6489ab97159ed7 /target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c
parent8402608182a3b91875f76c14d6bc186e733829d0 (diff)
downloadupstream-3e51b0e5b0d0617eef1071c78f84340fd7a0e103.tar.gz
upstream-3e51b0e5b0d0617eef1071c78f84340fd7a0e103.tar.bz2
upstream-3e51b0e5b0d0617eef1071c78f84340fd7a0e103.zip
[ifxmips] many more code cleanups for checkpatch.pl, most flagged as errors
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13665 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c')
-rw-r--r--target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c25
1 files changed, 7 insertions, 18 deletions
diff --git a/target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c b/target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c
index 5d61356025..f8c5f30173 100644
--- a/target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c
+++ b/target/linux/ifxmips/files/drivers/char/ifxmips_ssc.c
@@ -1251,24 +1251,13 @@ static int ssc_session(char *tx_buf, u32 tx_len, char *rx_buf, u32 rx_len)
else
eff_size = tx_len;
- //4 bytes alignment, required by driver
- /* change by TaiCheng */
- //if (in_irq()){
- if (1) {
- ssc_tx_buf = kmalloc(sizeof(char) *
- ((eff_size + 3) & (~3)),
- GFP_ATOMIC);
- ssc_rx_buf = kmalloc(sizeof(char) *
- ((eff_size + 3) & (~3)),
- GFP_ATOMIC);
- } else {
- ssc_tx_buf = kmalloc(sizeof(char) *
- ((eff_size + 3) & (~3)),
- GFP_KERNEL);
- ssc_rx_buf = kmalloc(sizeof(char) *
- ((eff_size + 3) & (~3)),
- GFP_KERNEL);
- }
+ /* 4 bytes alignment, required by driver */
+ ssc_tx_buf = kmalloc(sizeof(char) *
+ ((eff_size + 3) & (~3)),
+ GFP_ATOMIC);
+ ssc_rx_buf = kmalloc(sizeof(char) *
+ ((eff_size + 3) & (~3)),
+ GFP_ATOMIC);
if (ssc_tx_buf == NULL || ssc_rx_buf == NULL) {
printk("no memory for size of %d\n", eff_size);
ret = -ENOMEM;