Skip to content

Commit c28500c

Browse files
committed
[PARPORT] Disable debug output
1 parent 5bfaecd commit c28500c

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

drivers/parallel/parport/fdo.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
*/
77

88
#include "parport.h"
9+
#define NDEBUG
10+
#include <debug.h>
911

1012
/* FUNCTIONS ****************************************************************/
1113

drivers/parallel/parport/misc.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
*/
77

88
#include "parport.h"
9-
9+
#define NDEBUG
10+
#include <debug.h>
1011

1112
/* FUNCTIONS ****************************************************************/
1213

drivers/parallel/parport/parport.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
*/
66

77
#include "parport.h"
8+
#define NDEBUG
9+
#include <debug.h>
810

911
static DRIVER_UNLOAD DriverUnload;
1012
static DRIVER_DISPATCH DispatchCreate;

drivers/parallel/parport/parport.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515

1616
#include "hardware.h"
1717

18-
//#define NDEBUG
19-
#include <debug.h>
20-
2118
typedef enum
2219
{
2320
dsStopped,

drivers/parallel/parport/pdo.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
*/
77

88
#include "parport.h"
9+
#define NDEBUG
10+
#include <debug.h>
911

1012
/* FUNCTIONS ****************************************************************/
1113

0 commit comments

Comments
 (0)