aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/frontier
diff options
context:
space:
mode:
authorMauro Schilman <maurito.s@gmail.com>2010-11-01 14:12:05 -0300
committerGreg Kroah-Hartman <gregkh@suse.de>2010-11-09 15:55:56 -0800
commit9dd5f271441bbe85578c2b7841820d8bca26096c (patch)
tree9378c4c8c94d6504a3259b8711d97b89eef92ed1 /drivers/staging/frontier
parentb5ef076141acc223e55aa298abd2d2f5fb844874 (diff)
downloadkernel_samsung_smdk4412-9dd5f271441bbe85578c2b7841820d8bca26096c.zip
kernel_samsung_smdk4412-9dd5f271441bbe85578c2b7841820d8bca26096c.tar.gz
kernel_samsung_smdk4412-9dd5f271441bbe85578c2b7841820d8bca26096c.tar.bz2
Staging: frontier: fix space and * coding style issues in alphatrack.c
This is a patch to the alphatrack.c file that fixes up a space warning and a space after '*' warning found by the checkpatch.pl tool Signed-off-by: Mauro Schilman <maurito.s@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/frontier')
-rw-r--r--drivers/staging/frontier/alphatrack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/frontier/alphatrack.c b/drivers/staging/frontier/alphatrack.c
index ef7fbf8..2babb03 100644
--- a/drivers/staging/frontier/alphatrack.c
+++ b/drivers/staging/frontier/alphatrack.c
@@ -89,7 +89,7 @@ static int debug = ALPHATRACK_DEBUG;
/* Use our own dbg macro */
#define dbg_info(dev, format, arg...) do \
- { if (debug) dev_info(dev , format , ## arg); } while (0)
+ { if (debug) dev_info(dev , format , ## arg); } while (0)
#define alphatrack_ocmd_info(dev, cmd, format, arg...)
@@ -769,7 +769,7 @@ static int usb_alphatrack_probe(struct usb_interface *intf,
}
dev->write_buffer =
- kmalloc(sizeof(struct alphatrack_ocmd) * true_size, GFP_KERNEL);
+ kmalloc(true_size * sizeof(struct alphatrack_ocmd), GFP_KERNEL);
if (!dev->write_buffer) {
dev_err(&intf->dev, "Couldn't allocate write_buffer\n");