diff options
author | Herton Ronaldo Krzesinski <herton@mandriva.com.br> | 2007-07-31 00:38:52 -0700 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2007-08-25 17:24:08 +0200 |
commit | 32419ed8545cf3becdc84cfee0efd62becb48b4d (patch) | |
tree | 85fa061033e5a5ddadbd4ac7cb8288c70145737d | |
parent | 61675a5e1944525dba8421aa1fb0f2d075dba4b6 (diff) | |
download | lwn-32419ed8545cf3becdc84cfee0efd62becb48b4d.tar.gz lwn-32419ed8545cf3becdc84cfee0efd62becb48b4d.zip |
[PATCH] Include serial_reg.h with userspace headers
As reported by Gustavo de Nardin <gustavodn@mandriva.com.br>, while trying to
compile xosview (http://xosview.sourceforge.net/) with upstream kernel
headers being used you get the following errors:
serialmeter.cc:48:30: error: linux/serial_reg.h: No such file or directory
serialmeter.cc: In member function 'virtual void
SerialMeter::checkResources()':
serialmeter.cc:71: error: 'UART_LSR' was not declared in this scope
serialmeter.cc:71: error: 'UART_MSR' was not declared in this scope
...
Signed-off-by: Herton Ronaldo Krzesinski <herton@mandriva.com.br>
Cc: Gustavo de Nardin <gustavodn@mandriva.com.br>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Willy Tarreau <w@1wt.eu>
-rw-r--r-- | include/linux/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 157db77a7170..199fd71554e6 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild @@ -134,6 +134,7 @@ header-y += radeonfb.h header-y += raw.h header-y += resource.h header-y += rose.h +header-y += serial_reg.h header-y += smbno.h header-y += snmp.h header-y += sockios.h |