Shut up debug, to see how verbose the driver is
[gspca_kinect.git] / kinect.c
index 883db90..0322bad 100644 (file)
--- a/kinect.c
+++ b/kinect.c
@@ -1,9 +1,9 @@
 /*
  * kinect sensor device camera, gspca driver
  *
- * Copyright (C) 2010  Antonio Ospite <ospite@studenti.unina.it>
+ * Copyright (C) 2011  Antonio Ospite <ospite@studenti.unina.it>
  *
- * Based on the OpenKinect project and libfreenect by Ector Martin
+ * Based on the OpenKinect project and libfreenect
  * http://openkinect.org/wiki/Init_Analysis
  * 
  * This program is free software; you can redistribute it and/or modify
@@ -31,6 +31,11 @@ MODULE_AUTHOR("Antonio Ospite <ospite@studenti.unina.it>");
 MODULE_DESCRIPTION("GSPCA/Kinect Sensor Device USB Camera Driver");
 MODULE_LICENSE("GPL");
 
+#ifdef DEBUG
+int gspca_debug = D_ERR | D_PROBE | D_CONF | D_STREAM | D_FRAM | D_PACK |
+       D_USBI | D_USBO | D_V4L2;
+#endif
+
 struct pkt_hdr {
        uint8_t magic[2];
        uint8_t pad;
@@ -49,9 +54,6 @@ typedef struct {
        uint16_t tag;
 } cam_hdr;
 
-int gspca_debug = D_ERR | D_PROBE | D_CONF | D_STREAM | D_FRAM | D_PACK |
-       D_USBI | D_USBO | D_V4L2;
-
 /* specific webcam descriptor */
 struct sd {
        struct gspca_dev gspca_dev;     /* !! must be the first item */