Skip to content

Commit 4dd472b

Browse files
committed
soc: microchip: mpfs: add a prefix to rx_callback()
Add a prefix to the function name to match the rest of the file. Signed-off-by: Conor Dooley <[email protected]>
1 parent 5ee40e8 commit 4dd472b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ int mpfs_blocking_transaction(struct mpfs_sys_controller *sys_controller, struct
7575
}
7676
EXPORT_SYMBOL(mpfs_blocking_transaction);
7777

78-
static void rx_callback(struct mbox_client *client, void *msg)
78+
static void mpfs_sys_controller_rx_callback(struct mbox_client *client, void *msg)
7979
{
8080
struct mpfs_sys_controller *sys_controller =
8181
container_of(client, struct mpfs_sys_controller, client);
@@ -121,7 +121,7 @@ static int mpfs_sys_controller_probe(struct platform_device *pdev)
121121
return -ENOMEM;
122122

123123
sys_controller->client.dev = dev;
124-
sys_controller->client.rx_callback = rx_callback;
124+
sys_controller->client.rx_callback = mpfs_sys_controller_rx_callback;
125125
sys_controller->client.tx_block = 1U;
126126
sys_controller->client.tx_tout = msecs_to_jiffies(MPFS_SYS_CTRL_TIMEOUT_MS);
127127

0 commit comments

Comments
 (0)