diff options
| author | Iulia Manda <iulia.manda21@gmail.com> | 2014-03-11 00:09:11 +0200 |
|---|---|---|
| committer | Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> | 2014-03-10 22:58:25 -0700 |
| commit | 969fbc860a9736835926b647e1370ded22b02635 (patch) | |
| tree | 760c2a71a4155c00a50cf7f11e9934016b492e38 | |
| parent | 1c1dd2a06d9ce42007a499745f4b1cc2468f2bc9 (diff) | |
Stagind:dgnc: Fixed unnecessary braces for single statement blocks
Deleted unnecessary braces for single statement if blocks.
Signed-off-by: Iulia Manda <iulia.manda21@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
| -rw-r--r-- | drivers/staging/dgnc/dgnc_mgmt.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/staging/dgnc/dgnc_mgmt.c b/drivers/staging/dgnc/dgnc_mgmt.c index d66517d603a5..253547556d9b 100644 --- a/drivers/staging/dgnc/dgnc_mgmt.c +++ b/drivers/staging/dgnc/dgnc_mgmt.c @@ -106,9 +106,8 @@ int dgnc_mgmt_close(struct inode *inode, struct file *file) /* mgmt device */ if (minor < MAXMGMTDEVICES) { - if (dgnc_mgmt_in_use[minor]) { + if (dgnc_mgmt_in_use[minor]) dgnc_mgmt_in_use[minor] = 0; - } } DGNC_UNLOCK(dgnc_global_lock, lock_flags); @@ -164,9 +163,8 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) struct digi_info di; - if (copy_from_user(&brd, uarg, sizeof(int))) { + if (copy_from_user(&brd, uarg, sizeof(int))) return -EFAULT; - } DPR_MGMT(("DIGI_GETBD asking about board: %d\n", brd)); @@ -208,9 +206,8 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) uint board = 0; uint channel = 0; - if (copy_from_user(&ni, uarg, sizeof(ni))) { + if (copy_from_user(&ni, uarg, sizeof(ni))) return -EFAULT; - } DPR_MGMT(("DIGI_GETBD asking about board: %d channel: %d\n", ni.board, ni.channel)); |
