Skip to content

Commit 4db1c16

Browse files
jamin-aspeedlegoater
authored andcommitted
aspeed: fix coding style
Fix coding style issues from checkpatch.pl Test command: ./scripts/checkpatch.pl --no-tree -f hw/arm/aspeed.c Signed-off-by: Jamin Lin <[email protected]> Reviewed-by: Cédric Le Goater <[email protected]>
1 parent 5d33754 commit 4db1c16

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

hw/arm/aspeed.c

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ static void write_boot_rom(BlockBackend *blk, hwaddr addr, size_t rom_size,
266266
g_autofree void *storage = NULL;
267267
int64_t size;
268268

269-
/* The block backend size should have already been 'validated' by
269+
/*
270+
* The block backend size should have already been 'validated' by
270271
* the creation of the m25p80 object.
271272
*/
272273
size = blk_getlength(blk);
@@ -476,8 +477,10 @@ static void palmetto_bmc_i2c_init(AspeedMachineState *bmc)
476477
DeviceState *dev;
477478
uint8_t *eeprom_buf = g_malloc0(32 * 1024);
478479

479-
/* The palmetto platform expects a ds3231 RTC but a ds1338 is
480-
* enough to provide basic RTC features. Alarms will be missing */
480+
/*
481+
* The palmetto platform expects a ds3231 RTC but a ds1338 is
482+
* enough to provide basic RTC features. Alarms will be missing
483+
*/
481484
i2c_slave_create_simple(aspeed_i2c_get_bus(&soc->i2c, 0), "ds1338", 0x68);
482485

483486
smbus_eeprom_init_one(aspeed_i2c_get_bus(&soc->i2c, 0), 0x50,
@@ -568,8 +571,10 @@ static void romulus_bmc_i2c_init(AspeedMachineState *bmc)
568571
{
569572
AspeedSoCState *soc = bmc->soc;
570573

571-
/* The romulus board expects Epson RX8900 I2C RTC but a ds1338 is
572-
* good enough */
574+
/*
575+
* The romulus board expects Epson RX8900 I2C RTC but a ds1338 is
576+
* good enough
577+
*/
573578
i2c_slave_create_simple(aspeed_i2c_get_bus(&soc->i2c, 11), "ds1338", 0x32);
574579
}
575580

@@ -677,8 +682,10 @@ static void witherspoon_bmc_i2c_init(AspeedMachineState *bmc)
677682
i2c_slave_create_simple(aspeed_i2c_get_bus(&soc->i2c, 9), TYPE_TMP105,
678683
0x4a);
679684

680-
/* The witherspoon board expects Epson RX8900 I2C RTC but a ds1338 is
681-
* good enough */
685+
/*
686+
* The witherspoon board expects Epson RX8900 I2C RTC but a ds1338 is
687+
* good enough
688+
*/
682689
i2c_slave_create_simple(aspeed_i2c_get_bus(&soc->i2c, 11), "ds1338", 0x32);
683690

684691
smbus_eeprom_init_one(aspeed_i2c_get_bus(&soc->i2c, 11), 0x51,

0 commit comments

Comments
 (0)