diff mbox series

[1/2] i2c: Fix some brace style issues

Message ID 1519053606-9817-2-git-send-email-minyard@acm.org
State New
Headers show
Series [1/2] i2c: Fix some brace style issues | expand

Commit Message

Corey Minyard Feb. 19, 2018, 3:20 p.m. UTC
From: Corey Minyard <cminyard@mvista.com>


Signed-off-by: Corey Minyard <cminyard@mvista.com>

---
 hw/i2c/core.c        | 3 +--
 include/hw/i2c/i2c.h | 6 ++----
 2 files changed, 3 insertions(+), 6 deletions(-)

-- 
2.7.4

Comments

Peter Maydell Feb. 19, 2018, 3:24 p.m. UTC | #1
On 19 February 2018 at 15:20,  <minyard@acm.org> wrote:
> From: Corey Minyard <cminyard@mvista.com>

>

> Signed-off-by: Corey Minyard <cminyard@mvista.com>


Reviewed-by: Peter Maydell <peter.maydell@linaro.org>


thanks
-- PMM
Linus Walleij Feb. 22, 2018, 3:37 p.m. UTC | #2
On Mon, Feb 19, 2018 at 4:20 PM,  <minyard@acm.org> wrote:

> From: Corey Minyard <cminyard@mvista.com>

>

> Signed-off-by: Corey Minyard <cminyard@mvista.com>


Reviewed-by: Linus Walleij <linus.walleij@linaro.org>


Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/hw/i2c/core.c b/hw/i2c/core.c
index 59068f1..9a54b61 100644
--- a/hw/i2c/core.c
+++ b/hw/i2c/core.c
@@ -19,8 +19,7 @@  struct I2CNode {
 
 #define I2C_BROADCAST 0x00
 
-struct I2CBus
-{
+struct I2CBus {
     BusState qbus;
     QLIST_HEAD(, I2CNode) current_devs;
     uint8_t saved_address;
diff --git a/include/hw/i2c/i2c.h b/include/hw/i2c/i2c.h
index 24e95d0..8fd449f 100644
--- a/include/hw/i2c/i2c.h
+++ b/include/hw/i2c/i2c.h
@@ -25,8 +25,7 @@  typedef struct I2CSlave I2CSlave;
 #define I2C_SLAVE_GET_CLASS(obj) \
      OBJECT_GET_CLASS(I2CSlaveClass, (obj), TYPE_I2C_SLAVE)
 
-typedef struct I2CSlaveClass
-{
+typedef struct I2CSlaveClass {
     DeviceClass parent_class;
 
     /* Callbacks provided by the device.  */
@@ -50,8 +49,7 @@  typedef struct I2CSlaveClass
     int (*event)(I2CSlave *s, enum i2c_event event);
 } I2CSlaveClass;
 
-struct I2CSlave
-{
+struct I2CSlave {
     DeviceState qdev;
 
     /* Remaining fields for internal use by the I2C code.  */