Skip to content

Commit

Permalink
usb: microtek: Use "foo *bar" instead of "foo * bar".
Browse files Browse the repository at this point in the history
Use "foo *bar" instead of "foo * bar".

Signed-off-by: Sandhya Bankar <bankarsandhya512@gmail.com>
Acked-by: Oliver Neukum <oneukum@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Sandhya Bankar authored and Greg Kroah-Hartman committed Jun 8, 2016
1 parent a092a16 commit 600bb21
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/usb/image/microtek.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ typedef void (*mts_scsi_cmnd_callback)(struct scsi_cmnd *);

struct mts_transfer_context
{
struct mts_desc* instance;
struct mts_desc *instance;
mts_scsi_cmnd_callback final_callback;
struct scsi_cmnd *srb;

void* data;
void *data;
unsigned data_length;
int data_pipe;
int fragment;
Expand All @@ -38,7 +38,7 @@ struct mts_desc {
u8 ep_response;
u8 ep_image;

struct Scsi_Host * host;
struct Scsi_Host *host;

struct urb *urb;
struct mts_transfer_context context;
Expand Down

0 comments on commit 600bb21

Please sign in to comment.