diff options
Diffstat (limited to 'drivers/tty/n_gsm.c')
| -rw-r--r-- | drivers/tty/n_gsm.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c index aa2e5d3eb01..176f63256b3 100644 --- a/drivers/tty/n_gsm.c +++ b/drivers/tty/n_gsm.c @@ -1250,8 +1250,7 @@ static void gsm_control_response(struct gsm_mux *gsm, unsigned int command,  static void gsm_control_transmit(struct gsm_mux *gsm, struct gsm_control *ctrl)  { -	struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 1, -							gsm->ftype|PF); +	struct gsm_msg *msg = gsm_data_alloc(gsm, 0, ctrl->len + 1, gsm->ftype);  	if (msg == NULL)  		return;  	msg->data[0] = (ctrl->cmd << 1) | 2 | EA;	/* command */ @@ -2649,13 +2648,13 @@ static void gsmtty_wait_until_sent(struct tty_struct *tty, int timeout)  	   to do here */  } -static int gsmtty_tiocmget(struct tty_struct *tty, struct file *filp) +static int gsmtty_tiocmget(struct tty_struct *tty)  {  	struct gsm_dlci *dlci = tty->driver_data;  	return dlci->modem_rx;  } -static int gsmtty_tiocmset(struct tty_struct *tty, struct file *filp, +static int gsmtty_tiocmset(struct tty_struct *tty,  	unsigned int set, unsigned int clear)  {  	struct gsm_dlci *dlci = tty->driver_data; @@ -2672,7 +2671,7 @@ static int gsmtty_tiocmset(struct tty_struct *tty, struct file *filp,  } -static int gsmtty_ioctl(struct tty_struct *tty, struct file *filp, +static int gsmtty_ioctl(struct tty_struct *tty,  			unsigned int cmd, unsigned long arg)  {  	return -ENOIOCTLCMD;  |