mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
61a6976bf1
This takes a bit of a sledgehammer to the horribly CPU subtype ifdef-ridden header and abstracts all of the different register layouts in to distinct types which in turn can be overriden on a per-port basis, or permitted to default to the map matching the port type at probe time. In the process this ultimately fixes up inumerable bugs with mismatches on various CPU types (particularly the legacy ones that were obviously broken years ago and no one noticed) and provides a more tightly coupled and consolidated platform for extending and implementing generic features. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
11 lines
278 B
C
11 lines
278 B
C
#ifndef __CPU_SH3_SERIAL_H
|
|
#define __CPU_SH3_SERIAL_H
|
|
|
|
#include <linux/serial_sci.h>
|
|
|
|
extern struct plat_sci_port_ops sh770x_sci_port_ops;
|
|
extern struct plat_sci_port_ops sh7710_sci_port_ops;
|
|
extern struct plat_sci_port_ops sh7720_sci_port_ops;
|
|
|
|
#endif /* __CPU_SH3_SERIAL_H */
|