diff options
author | Jiri Slaby <jslaby@suse.cz> | 2014-11-12 05:55:25 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-25 20:06:39 -0500 |
commit | b725680f4818e1244449f2db2e9892b26784ed16 (patch) | |
tree | 7e82652fce8a00bd766d0a65608dbb76890f9e34 /arch/blackfin | |
parent | 3c59958d5868f77741930402dfcb27e9dc8968d2 (diff) |
tty: bfin, define inlined structures
struct bfin_serial_port contains structs circ_buf, timer_list, and
work_struct directly (not pointers). This means that these structures
have to be defined completely to be inlined in struct
bfin_serial_port.
So instead of struct declarations, define the structures by including
proper headers. They were pulled in by linux/serial_core.h or others
until now. But experimenting with circ_buf removal from serial_core,
struct circ_buf becomes undefined in bfin_serial:
In file included from arch/blackfin/kernel/debug-mmrs.c:21:0:
arch/blackfin/include/asm/bfin_serial.h:44:18: error: field 'rx_dma_buf' has incomplete type
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/include/asm/bfin_serial.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/blackfin/include/asm/bfin_serial.h b/arch/blackfin/include/asm/bfin_serial.h index 2d90d62edc97..d00d732784b1 100644 --- a/arch/blackfin/include/asm/bfin_serial.h +++ b/arch/blackfin/include/asm/bfin_serial.h | |||
@@ -9,8 +9,11 @@ | |||
9 | #ifndef __BFIN_ASM_SERIAL_H__ | 9 | #ifndef __BFIN_ASM_SERIAL_H__ |
10 | #define __BFIN_ASM_SERIAL_H__ | 10 | #define __BFIN_ASM_SERIAL_H__ |
11 | 11 | ||
12 | #include <linux/circ_buf.h> | ||
12 | #include <linux/serial_core.h> | 13 | #include <linux/serial_core.h> |
13 | #include <linux/spinlock.h> | 14 | #include <linux/spinlock.h> |
15 | #include <linux/timer.h> | ||
16 | #include <linux/workqueue.h> | ||
14 | #include <mach/anomaly.h> | 17 | #include <mach/anomaly.h> |
15 | #include <mach/bfin_serial.h> | 18 | #include <mach/bfin_serial.h> |
16 | 19 | ||
@@ -25,10 +28,6 @@ | |||
25 | # endif | 28 | # endif |
26 | #endif | 29 | #endif |
27 | 30 | ||
28 | struct circ_buf; | ||
29 | struct timer_list; | ||
30 | struct work_struct; | ||
31 | |||
32 | struct bfin_serial_port { | 31 | struct bfin_serial_port { |
33 | struct uart_port port; | 32 | struct uart_port port; |
34 | unsigned int old_status; | 33 | unsigned int old_status; |