Skip to content

Commit

Permalink
Staging:dgnc: Fixed space prohibited between function name and '('
Browse files Browse the repository at this point in the history
Deleted space between sizeof and open parenthethis.

Signed-off-by: Iulia Manda <[email protected]>
Acked-by: Paul E. McKenney <[email protected]>
Signed-off-by: Peter P Waskiewicz Jr <[email protected]>
  • Loading branch information
dotmnd authored and ppwaskie committed Mar 11, 2014
1 parent 8dd64ac commit 3393fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/dgnc/dgnc_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 3393fe9

Please sign in to comment.