1
0
Fork 0

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>
hifive-unleashed-5.1
Bruno Carvalho 2016-05-07 22:39:41 -04:00 committed by Greg Kroah-Hartman
parent 03759f8cd6
commit 3cbe6a1c1a
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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];