Skip to content

Commit

Permalink
staging: ft1000: Replace timeout values with USB_CTRL_G(S)ET_TIMEOUT.
Browse files Browse the repository at this point in the history
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Marek Belisko authored and Greg Kroah-Hartman committed Aug 14, 2012
1 parent 1897895 commit b0add95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 6 additions & 6 deletions drivers/staging/ft1000/ft1000-usb/ft1000_hw.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int ft1000_read_register(struct ft1000_device *ft1000dev, u16* Data,
nRegIndx,
Data,
2,
LARGE_TIMEOUT);
USB_CTRL_GET_TIMEOUT);

return ret;
}
Expand Down Expand Up @@ -143,7 +143,7 @@ int ft1000_write_register(struct ft1000_device *ft1000dev, u16 value,
nRegIndx,
NULL,
0,
LARGE_TIMEOUT);
USB_CTRL_SET_TIMEOUT);

return ret;
}
Expand Down Expand Up @@ -178,7 +178,7 @@ int ft1000_read_dpram32(struct ft1000_device *ft1000dev, u16 indx, u8 *buffer,
indx,
buffer,
cnt,
LARGE_TIMEOUT);
USB_CTRL_GET_TIMEOUT);

return ret;
}
Expand Down Expand Up @@ -215,7 +215,7 @@ int ft1000_write_dpram32(struct ft1000_device *ft1000dev, u16 indx, u8 *buffer,
indx,
buffer,
cnt,
LARGE_TIMEOUT);
USB_CTRL_SET_TIMEOUT);

return ret;
}
Expand Down Expand Up @@ -255,7 +255,7 @@ int ft1000_read_dpram16(struct ft1000_device *ft1000dev, u16 indx, u8 *buffer,
indx,
buffer,
2,
LARGE_TIMEOUT);
USB_CTRL_GET_TIMEOUT);

return ret;
}
Expand Down Expand Up @@ -294,7 +294,7 @@ int ft1000_write_dpram16(struct ft1000_device *ft1000dev, u16 indx, u16 value, u
indx,
NULL,
0,
LARGE_TIMEOUT);
USB_CTRL_SET_TIMEOUT);

return ret;
}
Expand Down
2 changes: 0 additions & 2 deletions drivers/staging/ft1000/ft1000-usb/ft1000_usb.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ struct app_info_block {

#define FT1000_STATUS_CLOSING 0x01

#define LARGE_TIMEOUT 5000

#define DSPBCMSGID 0x10

/* Electrabuzz specific DPRAM mapping */
Expand Down

0 comments on commit b0add95

Please sign in to comment.