]> asedeno.scripts.mit.edu Git - linux.git/commit
serial: sh-sci: Fix init data attribute for struct 'port_cfg'
authorMatthias Kaehlcke <mka@chromium.org>
Tue, 10 Oct 2017 01:26:22 +0000 (18:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Oct 2017 11:57:37 +0000 (13:57 +0200)
commitdd076cffb8cd675a8973fc9b6cea0c04be6f0111
tree42dec3df895d11dc1f0ea160c588135e84124850
parent6e605a01501b20ba8ace196536899195c8d296f5
serial: sh-sci: Fix init data attribute for struct 'port_cfg'

The __init attribute is meant to mark functions, use __initdata instead
for the data structure.

This fixes the following error when building with clang:

drivers/tty/serial/sh-sci.c:3247:15: error: '__section__' attribute only
  applies to functions, methods, properties, and global variables
    static struct __init plat_sci_port port_cfg;

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Reviewed-by: Guenter Roeck <groeck@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sh-sci.c