Fix whitespace leaked into tree

Clean whitespace errors that have gotten past lint-stable-003-whitespace
and gerrit review.

Change-Id: Id76fc68e9d32d1b2b672d519b75cdc80cc4f1ad9
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/3920
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Kyösti Mälkki
2013-09-13 07:57:49 +03:00
committed by Patrick Georgi
parent 370ff4af11
commit ecd8424919
20 changed files with 56 additions and 56 deletions

View File

@@ -46,7 +46,7 @@ type T;
@@
T f(...){<...
-DRM_DEBUG_KMS(
+fprintf(stderr,
+fprintf(stderr,
...);
...>}
@@
@@ -55,7 +55,7 @@ type T;
@@
T f(...){<...
-DRM_ERROR(
+fprintf(stderr,
+fprintf(stderr,
...);
...>}
@@
@@ -64,7 +64,7 @@ type T;
@@
T f(...){<...
-DRM_DEBUG(
+fprintf(stderr,
+fprintf(stderr,
...);
...>}
@@
@@ -73,7 +73,7 @@ type T;
@@
T f(...){<...
-DRM_DEBUG_DRIVER(
+fprintf(stderr,
+fprintf(stderr,
...);
...>}
@@
@@ -104,7 +104,7 @@ expression E1, E2;
@@
identifier d;
@@
-static
-static
const struct pci_device_id d[] = {...};
@@
expression E1;
@@ -113,7 +113,7 @@ expression E1;
+if (
E1
-,
+) fprintf(stderr,
+) fprintf(stderr,
...);
@@
expression E1;

View File

@@ -4,7 +4,7 @@ type T;
@@
T f(...){...
-\(DRM_DEBUG_KMS|DRM_ERRRO\)(
+fprintf(stderr,
+fprintf(stderr,
...);
...}

View File

@@ -6,7 +6,7 @@ identifier d;
@@
- intel_limit_t d = {...};
@@
@@
@@
- intel_connector_attach_encoder(...){...}
@@
@@