瀏覽代碼

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>
Aya Mahfouz 9 年之前
父節點
當前提交
e16a48845d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/staging/gdm724x/gdm_tty.c

+ 1 - 1
drivers/staging/gdm724x/gdm_tty.c

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