diff options
author | 2023-03-07 20:22:55 +0000 | |
---|---|---|
committer | 2023-04-03 19:26:53 +0100 | |
commit | 5ca631ec757bed5843e39c91c8f52d1789991756 (patch) | |
tree | c829b0a945273665c323bfe645878167f5975b24 | |
parent | mailbox: mpfs: check the service status in .tx_done() (diff) | |
download | wireguard-linux-5ca631ec757bed5843e39c91c8f52d1789991756.tar.xz wireguard-linux-5ca631ec757bed5843e39c91c8f52d1789991756.zip |
soc: microchip: mpfs: fix some horrible alignment
mpfs_sys_controller_delete() has some horrible alignment that upsets my
OCD... Move the RHS of the assignment to a new line for greater
satifaction.
Tested-by: Valentina Fernandez <valentina.fernandezalanis@microchip.com>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/soc/microchip/mpfs-sys-controller.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/microchip/mpfs-sys-controller.c b/drivers/soc/microchip/mpfs-sys-controller.c index 6e20207b5756..12039cb38b33 100644 --- a/drivers/soc/microchip/mpfs-sys-controller.c +++ b/drivers/soc/microchip/mpfs-sys-controller.c @@ -66,8 +66,8 @@ static void rx_callback(struct mbox_client *client, void *msg) static void mpfs_sys_controller_delete(struct kref *kref) { - struct mpfs_sys_controller *sys_controller = container_of(kref, struct mpfs_sys_controller, - consumers); + struct mpfs_sys_controller *sys_controller = + container_of(kref, struct mpfs_sys_controller, consumers); mbox_free_channel(sys_controller->chan); kfree(sys_controller); |