mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
Staging: gdm724x: gdm_tty.c: fix missing blank line after variable declaration
Checkpatch fix - Add missing blank line after variable declaration Signed-off-by: Kiran Padwal <kiran.padwal21@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7da8d6a015
commit
f4ef08f0c1
1 changed files with 5 additions and 0 deletions
|
@ -111,24 +111,28 @@ static int gdm_tty_install(struct tty_driver *driver, struct tty_struct *tty)
|
||||||
static int gdm_tty_open(struct tty_struct *tty, struct file *filp)
|
static int gdm_tty_open(struct tty_struct *tty, struct file *filp)
|
||||||
{
|
{
|
||||||
struct gdm *gdm = tty->driver_data;
|
struct gdm *gdm = tty->driver_data;
|
||||||
|
|
||||||
return tty_port_open(&gdm->port, tty, filp);
|
return tty_port_open(&gdm->port, tty, filp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gdm_tty_cleanup(struct tty_struct *tty)
|
static void gdm_tty_cleanup(struct tty_struct *tty)
|
||||||
{
|
{
|
||||||
struct gdm *gdm = tty->driver_data;
|
struct gdm *gdm = tty->driver_data;
|
||||||
|
|
||||||
tty_port_put(&gdm->port);
|
tty_port_put(&gdm->port);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gdm_tty_hangup(struct tty_struct *tty)
|
static void gdm_tty_hangup(struct tty_struct *tty)
|
||||||
{
|
{
|
||||||
struct gdm *gdm = tty->driver_data;
|
struct gdm *gdm = tty->driver_data;
|
||||||
|
|
||||||
tty_port_hangup(&gdm->port);
|
tty_port_hangup(&gdm->port);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gdm_tty_close(struct tty_struct *tty, struct file *filp)
|
static void gdm_tty_close(struct tty_struct *tty, struct file *filp)
|
||||||
{
|
{
|
||||||
struct gdm *gdm = tty->driver_data;
|
struct gdm *gdm = tty->driver_data;
|
||||||
|
|
||||||
tty_port_close(&gdm->port, tty, filp);
|
tty_port_close(&gdm->port, tty, filp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -139,6 +143,7 @@ static int gdm_tty_recv_complete(void *data,
|
||||||
int complete)
|
int complete)
|
||||||
{
|
{
|
||||||
struct gdm *gdm = tty_dev->gdm[index];
|
struct gdm *gdm = tty_dev->gdm[index];
|
||||||
|
|
||||||
if (!GDM_TTY_READY(gdm)) {
|
if (!GDM_TTY_READY(gdm)) {
|
||||||
if (complete == RECV_PACKET_PROCESS_COMPLETE)
|
if (complete == RECV_PACKET_PROCESS_COMPLETE)
|
||||||
gdm_tty_recv(gdm, gdm_tty_recv_complete);
|
gdm_tty_recv(gdm, gdm_tty_recv_complete);
|
||||||
|
|
Loading…
Reference in a new issue