mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 03:06:50 -04:00
staging: ced1401: rename DbgRampAddr()
rename camel case function DbgRampAddr() to ced_dbg_ramp_addr() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d5e8507272
commit
9f740cf62f
@@ -1218,11 +1218,11 @@ int ced_dbg_ramp_data(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB)
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
** DbgRampAddr
|
||||
** ced_dbg_ramp_addr
|
||||
**
|
||||
** Execute the diagnostic ramp address operation
|
||||
****************************************************************************/
|
||||
int DbgRampAddr(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB)
|
||||
int ced_dbg_ramp_addr(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB)
|
||||
{
|
||||
int iReturn;
|
||||
TDBGBLOCK db;
|
||||
|
||||
@@ -1303,7 +1303,7 @@ static long ced_ioctl(struct file *file, unsigned int cmd, unsigned long ulArg)
|
||||
return ced_dbg_ramp_data(pdx, (TDBGBLOCK __user *) ulArg);
|
||||
|
||||
case _IOC_NR(IOCTL_CED_DBGRAMPADDR):
|
||||
return DbgRampAddr(pdx, (TDBGBLOCK __user *) ulArg);
|
||||
return ced_dbg_ramp_addr(pdx, (TDBGBLOCK __user *) ulArg);
|
||||
|
||||
case _IOC_NR(IOCTL_CED_DBGGETDATA):
|
||||
return DbgGetData(pdx, (TDBGBLOCK __user *) ulArg);
|
||||
|
||||
@@ -232,7 +232,7 @@ extern int ced_transfer_flags(DEVICE_EXTENSION *pdx);
|
||||
extern int ced_dbg_peek(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int ced_dbg_poke(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int ced_dbg_ramp_data(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int DbgRampAddr(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int ced_dbg_ramp_addr(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int DbgGetData(DEVICE_EXTENSION *pdx, TDBGBLOCK __user *pDB);
|
||||
extern int DbgStopLoop(DEVICE_EXTENSION *pdx);
|
||||
extern int SetCircular(DEVICE_EXTENSION *pdx, struct transfer_area_desc __user *pTD);
|
||||
|
||||
Reference in New Issue
Block a user