From 770eb30ed971204ab4972b7609ea30beef025a18 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Wed, 16 Mar 2016 09:58:01 +0100 Subject: [PATCH] dm: device.c: Minor coding-style fix Fix multi-line comment indentation in device_bind() Signed-off-by: Stefan Roese Cc: Simon Glass Reviewed-by: Bin Meng --- drivers/core/device.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/core/device.c b/drivers/core/device.c index 6b1ba2269c..9d0c1009e9 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -66,12 +66,12 @@ int device_bind(struct udevice *parent, const struct driver *drv, dev->req_seq = -1; if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) { /* - * Some devices, such as a SPI bus, I2C bus and serial ports - * are numbered using aliases. - * - * This is just a 'requested' sequence, and will be - * resolved (and ->seq updated) when the device is probed. - */ + * Some devices, such as a SPI bus, I2C bus and serial ports + * are numbered using aliases. + * + * This is just a 'requested' sequence, and will be + * resolved (and ->seq updated) when the device is probed. + */ if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) { if (uc->uc_drv->name && of_offset != -1) { fdtdec_get_alias_seq(gd->fdt_blob, -- 2.39.2