1
0
Fork 0

staging: gdm724x: constify tty_port_operations structs

Constifies tty_port_operations structure in
the tty code of the gdm724x driver since it
is not modified after its initialization.

Detected and found using Coccinelle.

Suggested-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Aya Mahfouz 2015-12-15 01:27:27 +02:00 committed by Greg Kroah-Hartman
parent d1052aa569
commit e16a48845d
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static void gdm_port_destruct(struct tty_port *port)
kfree(gdm);
}
static struct tty_port_operations gdm_port_ops = {
static const struct tty_port_operations gdm_port_ops = {
.destruct = gdm_port_destruct,
};