From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752097AbdLYCXD (ORCPT ); Sun, 24 Dec 2017 21:23:03 -0500 Received: from mail-wm0-f65.google.com ([74.125.82.65]:41970 "EHLO mail-wm0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751950AbdLYCW6 (ORCPT ); Sun, 24 Dec 2017 21:22:58 -0500 X-Google-Smtp-Source: ACJfBotA7AQ6mzk/HrkSTX8vF7vofqkx6ufMsQYu+8VXsgGpBZghuGiUhT4WK67B04/SEQSggjqydg== From: Javier Martinez Canillas To: linux-kernel@vger.kernel.org Cc: James Ettle , Hans de Goede , Azhar Shaikh , Javier Martinez Canillas , Jason Gunthorpe , linux-integrity@vger.kernel.org, Peter Huewe , Jarkko Sakkinen Subject: [PATCH v2 2/3] tpm: follow coding style for variable declaration in tpm_tis_core_init() Date: Mon, 25 Dec 2017 03:22:50 +0100 Message-Id: <20171225022251.6464-3-javierm@redhat.com> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20171225022251.6464-1-javierm@redhat.com> References: <20171225022251.6464-1-javierm@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The coding style says "use just one data declaration per line (no commas for multiple data declarations)" so follow this convention. Suggested-by: Jarkko Sakkinen Signed-off-by: Javier Martinez Canillas Reviewed-by: Jarkko Sakkinen Tested-by: Jarkko Sakkinen --- drivers/char/tpm/tpm_tis_core.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/char/tpm/tpm_tis_core.c b/drivers/char/tpm/tpm_tis_core.c index f2bd99fa8352..03daf7017e0f 100644 --- a/drivers/char/tpm/tpm_tis_core.c +++ b/drivers/char/tpm/tpm_tis_core.c @@ -803,7 +803,9 @@ int tpm_tis_core_init(struct device *dev, struct tpm_tis_data *priv, int irq, const struct tpm_tis_phy_ops *phy_ops, acpi_handle acpi_dev_handle) { - u32 vendor, intfcaps, intmask; + u32 vendor; + u32 intfcaps; + u32 intmask; u8 rid; int rc, probe; struct tpm_chip *chip; -- 2.14.3