diff mbox series

drivers: ssb: driver_gpio.c: Fix alignment of comment

Message ID 20210428083020.gt6ea2guhfp75pan@kewl-virtual-machine
State New
Headers show
Series drivers: ssb: driver_gpio.c: Fix alignment of comment | expand

Commit Message

Shubhankar Kuranagatti April 28, 2021, 8:30 a.m. UTC
The closing */ has been shifted to a new line
This is done to maintain code uniformity.

Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
---
 drivers/ssb/driver_gpio.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Michael Büsch April 28, 2021, 2:46 p.m. UTC | #1
On Wed, 28 Apr 2021 14:00:20 +0530
Shubhankar Kuranagatti <shubhankarvk@gmail.com> wrote:

> The closing */ has been shifted to a new line
> This is done to maintain code uniformity.
> 
> Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>


Acked-by: Michael Büsch <m@bues.ch>
diff mbox series

Patch

diff --git a/drivers/ssb/driver_gpio.c b/drivers/ssb/driver_gpio.c
index 66a76fd83248..2de3896489c8 100644
--- a/drivers/ssb/driver_gpio.c
+++ b/drivers/ssb/driver_gpio.c
@@ -231,7 +231,8 @@  static int ssb_gpio_chipco_init(struct ssb_bus *bus)
 	chip->ngpio		= 16;
 	/* There is just one SoC in one device and its GPIO addresses should be
 	 * deterministic to address them more easily. The other buses could get
-	 * a random base number. */
+	 * a random base number.
+	 */
 	if (bus->bustype == SSB_BUSTYPE_SSB)
 		chip->base		= 0;
 	else
@@ -424,7 +425,8 @@  static int ssb_gpio_extif_init(struct ssb_bus *bus)
 	chip->ngpio		= 5;
 	/* There is just one SoC in one device and its GPIO addresses should be
 	 * deterministic to address them more easily. The other buses could get
-	 * a random base number. */
+	 * a random base number.
+	 */
 	if (bus->bustype == SSB_BUSTYPE_SSB)
 		chip->base		= 0;
 	else