Commit a535929f authored by Colin Ian King's avatar Colin Ian King Committed by Greg Kroah-Hartman

staging: fsl-mc: make function its_fsl_mc_msi_init static

The function its_fsl_mc_msi_init is local to the source and does
not need to be in global scope, so make it static.

Cleans up sparse warning:
symbol 'its_fsl_mc_msi_init' was not declared. Should it be static?
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 60b91319
......@@ -67,7 +67,7 @@ static const struct of_device_id its_device_id[] = {
{},
};
int __init its_fsl_mc_msi_init(void)
static int __init its_fsl_mc_msi_init(void)
{
struct device_node *np;
struct irq_domain *parent;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment