linux/sysrq.h needs linux/errno.h

In include/linux/sysrq.h the constant EINVAL is being used but is undefined
if include/linux/errno.h is not included before.

Fix this by adding #include <linux/errno.h> at the beginning.

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Tobias Doerffel 2009-07-05 12:08:23 -07:00 коммит произвёл Linus Torvalds
Родитель 600ce1a0fa
Коммит 82e3310ace
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -14,6 +14,8 @@
#ifndef _LINUX_SYSRQ_H #ifndef _LINUX_SYSRQ_H
#define _LINUX_SYSRQ_H #define _LINUX_SYSRQ_H
#include <linux/errno.h>
struct pt_regs; struct pt_regs;
struct tty_struct; struct tty_struct;