staging: ced1401: rename GetTransfer()
rename camel case function GetTransfer() to ced_get_transfer() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b76530bba8
commit
3d012b01a8
|
@ -879,10 +879,10 @@ int ced_test_event(DEVICE_EXTENSION *pdx, int nArea)
|
|||
}
|
||||
|
||||
/****************************************************************************
|
||||
** GetTransferInfo
|
||||
** ced_get_transferInfo
|
||||
** Puts the current state of the 1401 in a TGET_TX_BLOCK.
|
||||
*****************************************************************************/
|
||||
int GetTransfer(DEVICE_EXTENSION *pdx, TGET_TX_BLOCK __user *pTX)
|
||||
int ced_get_transfer(DEVICE_EXTENSION *pdx, TGET_TX_BLOCK __user *pTX)
|
||||
{
|
||||
int iReturn = U14ERR_NOERROR;
|
||||
unsigned int dwIdent;
|
||||
|
|
|
@ -1269,7 +1269,7 @@ static long ced_ioctl(struct file *file, unsigned int cmd, unsigned long ulArg)
|
|||
return (2 << 24) | (DRIVERMAJREV << 16) | DRIVERMINREV; /* USB | MAJOR | MINOR */
|
||||
|
||||
case _IOC_NR(IOCTL_CED_GETTRANSFER):
|
||||
return GetTransfer(pdx, (TGET_TX_BLOCK __user *) ulArg);
|
||||
return ced_get_transfer(pdx, (TGET_TX_BLOCK __user *) ulArg);
|
||||
|
||||
case _IOC_NR(IOCTL_CED_KILLIO1401):
|
||||
return KillIO1401(pdx);
|
||||
|
|
|
@ -222,7 +222,7 @@ extern int ced_set_event(DEVICE_EXTENSION *pdx, struct transfer_event __user *pT
|
|||
extern int ced_stat_1401(DEVICE_EXTENSION *pdx);
|
||||
extern int ced_line_count(DEVICE_EXTENSION *pdx);
|
||||
extern int ced_get_out_buf_space(DEVICE_EXTENSION *pdx);
|
||||
extern int GetTransfer(DEVICE_EXTENSION *pdx, TGET_TX_BLOCK __user *pGTB);
|
||||
extern int ced_get_transfer(DEVICE_EXTENSION *pdx, TGET_TX_BLOCK __user *pGTB);
|
||||
extern int KillIO1401(DEVICE_EXTENSION *pdx);
|
||||
extern int BlkTransState(DEVICE_EXTENSION *pdx);
|
||||
extern int StateOf1401(DEVICE_EXTENSION *pdx);
|
||||
|
|
Loading…
Reference in New Issue