mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
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>
This commit is contained in:
committed by
Peter P Waskiewicz Jr
parent
8dd64acdbd
commit
3393fe9077
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user