Skip to content

Commit

Permalink
fix: Use EXPORT_SYMBOL_GPL
Browse files Browse the repository at this point in the history
Signed-off-by: David Brown <davidb@codeaurora.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
David Brown authored and Greg Kroah-Hartman committed Mar 25, 2013
1 parent e44b0ce commit a1a906c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/ssbi/ssbi.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ int msm_ssbi_read(struct device *dev, u16 addr, u8 *buf, int len)

return ret;
}
EXPORT_SYMBOL(msm_ssbi_read);
EXPORT_SYMBOL_GPL(msm_ssbi_read);

int msm_ssbi_write(struct device *dev, u16 addr, u8 *buf, int len)
{
Expand All @@ -259,7 +259,7 @@ int msm_ssbi_write(struct device *dev, u16 addr, u8 *buf, int len)

return ret;
}
EXPORT_SYMBOL(msm_ssbi_write);
EXPORT_SYMBOL_GPL(msm_ssbi_write);

static int msm_ssbi_add_slave(struct msm_ssbi *ssbi,
const struct msm_ssbi_slave_info *slave)
Expand Down

0 comments on commit a1a906c

Please sign in to comment.