Skip to content

Commit 5ca631e

Browse files
committed
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>
1 parent 37e3430 commit 5ca631e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/soc/microchip/mpfs-sys-controller.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ static void rx_callback(struct mbox_client *client, void *msg)
6666

6767
static void mpfs_sys_controller_delete(struct kref *kref)
6868
{
69-
struct mpfs_sys_controller *sys_controller = container_of(kref, struct mpfs_sys_controller,
70-
consumers);
69+
struct mpfs_sys_controller *sys_controller =
70+
container_of(kref, struct mpfs_sys_controller, consumers);
7171

7272
mbox_free_channel(sys_controller->chan);
7373
kfree(sys_controller);

0 commit comments

Comments
 (0)