[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20071110145627.C6FE347A7C@mail.koeller.dyndns.org>
Date: Sat, 10 Nov 2007 15:55:15 +0100
From: Thomas Koeller <thomas@...ller.dyndns.org>
To: axboe@...nel.dk
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] Include header required for INT_MAX
cdrom.h uses INT_MAX, so it must include kernel.h or
limits.h (userspace) for a definition.
Signed-off-by: Thomas Koeller <thomas@...ller.dyndns.org>
diff --git a/include/linux/cdrom.h b/include/linux/cdrom.h
index c6d3e22..bd8064a 100644
--- a/include/linux/cdrom.h
+++ b/include/linux/cdrom.h
@@ -12,6 +12,11 @@
#define _LINUX_CDROM_H
#include <asm/byteorder.h>
+#ifdef __KERNEL__
+#include <linux/kernel.h>
+#else
+#include <limits.h>
+#endif
/*******************************************************
* As of Linux 2.1.x, all Linux CD-ROM application programs will use this
--
1.5.3.4
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists