Commit ffefea47 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: dt3155: remove TRUE/FALSE

These aren't needed in the kernel, so remove them.

Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Scott Smedley <ss@aao.gov.au>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e43a0edc
...@@ -38,9 +38,6 @@ MA 02111-1307 USA ...@@ -38,9 +38,6 @@ MA 02111-1307 USA
#include <linux/time.h> /* struct timeval */ #include <linux/time.h> /* struct timeval */
#define TRUE 1
#define FALSE 0
/* Uncomment this for 50Hz CCIR */ /* Uncomment this for 50Hz CCIR */
#define CCIR 1 #define CCIR 1
...@@ -55,11 +52,11 @@ MA 02111-1307 USA ...@@ -55,11 +52,11 @@ MA 02111-1307 USA
#ifdef CCIR #ifdef CCIR
#define DT3155_MAX_ROWS 576 #define DT3155_MAX_ROWS 576
#define DT3155_MAX_COLS 768 #define DT3155_MAX_COLS 768
#define FORMAT50HZ TRUE #define FORMAT50HZ 1
#else #else
#define DT3155_MAX_ROWS 480 #define DT3155_MAX_ROWS 480
#define DT3155_MAX_COLS 640 #define DT3155_MAX_COLS 640
#define FORMAT50HZ FALSE #define FORMAT50HZ 0
#endif #endif
/* Configuration structure */ /* Configuration structure */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment