staging/gdm724x: Fix avoid CamelCase
Fix checkpatch issues: "CHECK: Avoid CamelCase" Signed-off-by: Bruno Carvalho <brunocarvalhofarias@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
03759f8cd6
commit
3cbe6a1c1a
@ -708,7 +708,7 @@ static void do_tx(struct work_struct *work)
|
||||
|
||||
#define SDU_PARAM_LEN 12
|
||||
static int gdm_usb_sdu_send(void *priv_dev, void *data, int len,
|
||||
unsigned int dftEpsId, unsigned int epsId,
|
||||
unsigned int dft_eps_ID, unsigned int eps_ID,
|
||||
void (*cb)(void *data), void *cb_data,
|
||||
int dev_idx, int nic_type)
|
||||
{
|
||||
@ -746,8 +746,8 @@ static int gdm_usb_sdu_send(void *priv_dev, void *data, int len,
|
||||
}
|
||||
|
||||
sdu->len = gdm_cpu_to_dev16(&udev->gdm_ed, send_len);
|
||||
sdu->dftEpsId = gdm_cpu_to_dev32(&udev->gdm_ed, dftEpsId);
|
||||
sdu->bearer_ID = gdm_cpu_to_dev32(&udev->gdm_ed, epsId);
|
||||
sdu->dft_eps_ID = gdm_cpu_to_dev32(&udev->gdm_ed, dft_eps_ID);
|
||||
sdu->bearer_ID = gdm_cpu_to_dev32(&udev->gdm_ed, eps_ID);
|
||||
sdu->nic_type = gdm_cpu_to_dev32(&udev->gdm_ed, nic_type);
|
||||
|
||||
t_sdu->len = send_len + HCI_HEADER_SIZE;
|
||||
|
@ -58,7 +58,7 @@ struct sdu_header {
|
||||
struct sdu {
|
||||
u16 cmd_evt;
|
||||
u16 len;
|
||||
u32 dftEpsId;
|
||||
u32 dft_eps_ID;
|
||||
u32 bearer_ID;
|
||||
u32 nic_type;
|
||||
u8 data[0];
|
||||
|
Loading…
Reference in New Issue
Block a user