]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
soundwire: slave: fix alignment issues
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Wed, 1 May 2019 15:57:36 +0000 (10:57 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 2 May 2019 15:16:28 +0000 (17:16 +0200)
Use Linux style

Reviewed-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/soundwire/slave.c

index ac103bd0c1760b3499e661e101ab6e93d0b0cbaa..f39a5815e25dcf4b98e8cc270659d7968d20c71f 100644 (file)
@@ -14,7 +14,7 @@ static void sdw_slave_release(struct device *dev)
 }
 
 static int sdw_slave_add(struct sdw_bus *bus,
-               struct sdw_slave_id *id, struct fwnode_handle *fwnode)
+                        struct sdw_slave_id *id, struct fwnode_handle *fwnode)
 {
        struct sdw_slave *slave;
        int ret;
@@ -30,8 +30,8 @@ static int sdw_slave_add(struct sdw_bus *bus,
 
        /* name shall be sdw:link:mfg:part:class:unique */
        dev_set_name(&slave->dev, "sdw:%x:%x:%x:%x:%x",
-                       bus->link_id, id->mfg_id, id->part_id,
-                       id->class_id, id->unique_id);
+                    bus->link_id, id->mfg_id, id->part_id,
+                    id->class_id, id->unique_id);
 
        slave->dev.release = sdw_slave_release;
        slave->dev.bus = &sdw_bus_type;
@@ -84,11 +84,11 @@ int sdw_acpi_find_slaves(struct sdw_bus *bus)
                acpi_status status;
 
                status = acpi_evaluate_integer(adev->handle,
-                                       METHOD_NAME__ADR, NULL, &addr);
+                                              METHOD_NAME__ADR, NULL, &addr);
 
                if (ACPI_FAILURE(status)) {
                        dev_err(bus->dev, "_ADR resolution failed: %x\n",
-                                                       status);
+                               status);
                        return status;
                }