[coreboot-gerrit] New patch to review for coreboot: 47b160c Remove unnecessary space characters.

Andrew Wu (arw@dmp.com.tw) gerrit at coreboot.org
Fri Aug 2 13:32:45 CEST 2013


Andrew Wu (arw at dmp.com.tw) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3847

-gerrit

commit 47b160c4fed79bd451f2d1c658ccee32744d7725
Author: Andrew Wu <arw at dmp.com.tw>
Date:   Fri Aug 2 19:29:17 2013 +0800

    Remove unnecessary space characters.
    
    Change-Id: I4ed9329126b216eb4ae58355672603ce79a6d4ef
    Signed-off-by: Andrew Wu <arw at dmp.com.tw>
---
 src/southbridge/amd/sb600/hda.c          | 4 ++--
 src/southbridge/amd/sb700/hda.c          | 4 ++--
 src/southbridge/amd/sb800/hda.c          | 4 ++--
 src/southbridge/intel/bd82x6x/azalia.c   | 4 ++--
 src/southbridge/intel/i82801gx/azalia.c  | 4 ++--
 src/southbridge/intel/i82801ix/hdaudio.c | 4 ++--
 src/southbridge/intel/lynxpoint/azalia.c | 4 ++--
 src/southbridge/intel/sch/audio.c        | 4 ++--
 src/southbridge/nvidia/mcp55/azalia.c    | 4 ++--
 9 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/src/southbridge/amd/sb600/hda.c b/src/southbridge/amd/sb600/hda.c
index 3b118af..711d84b 100644
--- a/src/southbridge/amd/sb600/hda.c
+++ b/src/southbridge/amd/sb600/hda.c
@@ -27,8 +27,8 @@
 #include "sb600.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 static int set_bits(u32 port, u32 mask, u32 val)
 {
diff --git a/src/southbridge/amd/sb700/hda.c b/src/southbridge/amd/sb700/hda.c
index 98cb75f..48e472d 100644
--- a/src/southbridge/amd/sb700/hda.c
+++ b/src/southbridge/amd/sb700/hda.c
@@ -27,8 +27,8 @@
 #include "sb700.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 static int set_bits(u32 port, u32 mask, u32 val)
 {
diff --git a/src/southbridge/amd/sb800/hda.c b/src/southbridge/amd/sb800/hda.c
index 1be44fb..c43e949 100644
--- a/src/southbridge/amd/sb800/hda.c
+++ b/src/southbridge/amd/sb800/hda.c
@@ -27,8 +27,8 @@
 #include "sb800.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 static int set_bits(u32 port, u32 mask, u32 val)
 {
diff --git a/src/southbridge/intel/bd82x6x/azalia.c b/src/southbridge/intel/bd82x6x/azalia.c
index 2d854a4..f3a2b2a 100644
--- a/src/southbridge/intel/bd82x6x/azalia.c
+++ b/src/southbridge/intel/bd82x6x/azalia.c
@@ -29,8 +29,8 @@
 #include "pch.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 typedef struct southbridge_intel_bd82x6x_config config_t;
 
diff --git a/src/southbridge/intel/i82801gx/azalia.c b/src/southbridge/intel/i82801gx/azalia.c
index 26859c5..ad9faa5 100644
--- a/src/southbridge/intel/i82801gx/azalia.c
+++ b/src/southbridge/intel/i82801gx/azalia.c
@@ -28,8 +28,8 @@
 #include "i82801gx.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 typedef struct southbridge_intel_i82801gx_config config_t;
 
diff --git a/src/southbridge/intel/i82801ix/hdaudio.c b/src/southbridge/intel/i82801ix/hdaudio.c
index 2d75d11..1392314 100644
--- a/src/southbridge/intel/i82801ix/hdaudio.c
+++ b/src/southbridge/intel/i82801ix/hdaudio.c
@@ -29,8 +29,8 @@
 #include "i82801ix.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 typedef struct southbridge_intel_i82801ix_config config_t;
 
diff --git a/src/southbridge/intel/lynxpoint/azalia.c b/src/southbridge/intel/lynxpoint/azalia.c
index ad78e83..0e62676 100644
--- a/src/southbridge/intel/lynxpoint/azalia.c
+++ b/src/southbridge/intel/lynxpoint/azalia.c
@@ -29,8 +29,8 @@
 #include "pch.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 typedef struct southbridge_intel_bd82x6x_config config_t;
 
diff --git a/src/southbridge/intel/sch/audio.c b/src/southbridge/intel/sch/audio.c
index 701c944..4cb7af2 100644
--- a/src/southbridge/intel/sch/audio.c
+++ b/src/southbridge/intel/sch/audio.c
@@ -27,8 +27,8 @@
 #include <delay.h>
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY (1 << 0)
-#define   HDA_ICII_VALID  (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 typedef struct southbridge_intel_sch_config config_t;
 
diff --git a/src/southbridge/nvidia/mcp55/azalia.c b/src/southbridge/nvidia/mcp55/azalia.c
index a4ad51e..67433d3 100644
--- a/src/southbridge/nvidia/mcp55/azalia.c
+++ b/src/southbridge/nvidia/mcp55/azalia.c
@@ -28,8 +28,8 @@
 #include "mcp55.h"
 
 #define HDA_ICII_REG 0x68
-#define   HDA_ICII_BUSY  (1 << 0)
-#define   HDA_ICII_VALID (1 << 1)
+#define HDA_ICII_BUSY (1 << 0)
+#define HDA_ICII_VALID (1 << 1)
 
 static int set_bits(u32 port, u32 mask, u32 val)
 {



More information about the coreboot-gerrit mailing list