diff options
author | Iulia Manda <iulia.manda21@gmail.com> | 2014-03-10 23:00:03 -0700 |
---|---|---|
committer | Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> | 2014-03-10 23:01:06 -0700 |
commit | 3393fe90771b00cdf5b876243ba9cd9cc1d51272 (patch) | |
tree | 4f66c2a99757398c0c6e752d6e9091da125650d1 /drivers | |
parent | 8dd64acdbdf7796897f7dd491aa762c109c2567e (diff) | |
download | op-kernel-dev-3393fe90771b00cdf5b876243ba9cd9cc1d51272.zip op-kernel-dev-3393fe90771b00cdf5b876243ba9cd9cc1d51272.tar.gz |
Staging:dgnc: Fixed space prohibited between function name and '('
Deleted space between sizeof and open parenthethis.
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/dgnc/dgnc_mgmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/dgnc/dgnc_mgmt.c b/drivers/staging/dgnc/dgnc_mgmt.c index 8c0f5f6..65f2d22 100644 --- a/drivers/staging/dgnc/dgnc_mgmt.c +++ b/drivers/staging/dgnc/dgnc_mgmt.c @@ -151,7 +151,7 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) DPR_MGMT(("DIGI_GETDD returning numboards: %d version: %s\n", ddi.dinfo_nboards, ddi.dinfo_version)); - if (copy_to_user(uarg, &ddi, sizeof (ddi))) + if (copy_to_user(uarg, &ddi, sizeof(ddi))) return -EFAULT; break; @@ -192,7 +192,7 @@ long dgnc_mgmt_ioctl(struct file *file, unsigned int cmd, unsigned long arg) DPR_MGMT(("DIGI_GETBD returning type: %x state: %x ports: %x size: %x\n", di.info_bdtype, di.info_bdstate, di.info_nports, di.info_physsize)); - if (copy_to_user(uarg, &di, sizeof (di))) + if (copy_to_user(uarg, &di, sizeof(di))) return -EFAULT; break; |