Skip to content

Commit

Permalink
Staging: frontier: fix space and * coding style issues in alphatrack.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mauro Schilman authored and Greg Kroah-Hartman committed Nov 9, 2010
1 parent b5ef076 commit 9dd5f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/frontier/alphatrack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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...)

Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit 9dd5f27

Please sign in to comment.