From patchwork Wed Mar 16 08:58:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Roese X-Patchwork-Id: 598170 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3qQ5474rjxz9sRB for ; Wed, 16 Mar 2016 19:58:14 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 21793A7613; Wed, 16 Mar 2016 09:58:10 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZMNFD0WASpEa; Wed, 16 Mar 2016 09:58:09 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B84C8A760B; Wed, 16 Mar 2016 09:58:09 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 90EA8A760B for ; Wed, 16 Mar 2016 09:58:07 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Kk39LXBjTwUn for ; Wed, 16 Mar 2016 09:58:07 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from sohosted5.com (ns2.sohosted5.com [195.8.208.35]) by theia.denx.de (Postfix) with ESMTPS id 5A400A75F1 for ; Wed, 16 Mar 2016 09:58:04 +0100 (CET) Received: from stefan-work.fritz.box ([185.22.143.102]) by sohosted5.com with MailEnable ESMTP; Wed, 16 Mar 2016 09:58:02 +0100 From: Stefan Roese To: u-boot@lists.denx.de Date: Wed, 16 Mar 2016 09:58:01 +0100 Message-Id: <1458118681-5158-1-git-send-email-sr@denx.de> X-Mailer: git-send-email 2.7.3 X-ME-Bayesian: 0.000000 Subject: [U-Boot] [PATCH] dm: device.c: Minor coding-style fix X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" 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 cb24a61..766c717 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,