mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
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>
This commit is contained in:
parent
37e3430176
commit
5ca631ec75
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user