diff options
author | Bojan Prtvar <prtvar.b@gmail.com> | 2014-04-03 00:24:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-04-18 16:21:05 -0700 |
commit | 938acb99ce6c8883075c4c6e64409dd765bdb9e9 (patch) | |
tree | ae3ec9ee640279c97f30448478d0448aff78d098 /drivers/staging/vme/devices | |
parent | c3ed0afc621f3eaa27519d083efb7c2304fd89a6 (diff) |
staging: vme: Fix a small coding style issue in vme_user.c
The checkpatch.pl complains about missing blank line after declaration.
This patch silence the warning.
Signed-off-by: Bojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vme/devices')
-rw-r--r-- | drivers/staging/vme/devices/vme_user.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c index 792792715673..481192a2f4e2 100644 --- a/drivers/staging/vme/devices/vme_user.c +++ b/drivers/staging/vme/devices/vme_user.c @@ -791,6 +791,7 @@ static int vme_user_probe(struct vme_dev *vdev) /* Add sysfs Entries */ for (i = 0; i < VME_DEVS; i++) { int num; + switch (type[i]) { case MASTER_MINOR: sprintf(name, "bus/vme/m%%d"); |