Commit 08933418 authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown

spi: core: Staticize __spi_split_transfer_maxsize()

__spi_split_transfer_maxsize() can be made static as it is only
used in this file.

This fixes the following sparse warning:

drivers/spi/spi.c:2266:5: warning: symbol '__spi_split_transfer_maxsize' was not declared. Should it be static?
Signed-off-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 657d32ef
...@@ -2241,11 +2241,11 @@ struct spi_replaced_transfers *spi_replace_transfers( ...@@ -2241,11 +2241,11 @@ struct spi_replaced_transfers *spi_replace_transfers(
} }
EXPORT_SYMBOL_GPL(spi_replace_transfers); EXPORT_SYMBOL_GPL(spi_replace_transfers);
int __spi_split_transfer_maxsize(struct spi_master *master, static int __spi_split_transfer_maxsize(struct spi_master *master,
struct spi_message *msg, struct spi_message *msg,
struct spi_transfer **xferp, struct spi_transfer **xferp,
size_t maxsize, size_t maxsize,
gfp_t gfp) gfp_t gfp)
{ {
struct spi_transfer *xfer = *xferp, *xfers; struct spi_transfer *xfer = *xferp, *xfers;
struct spi_replaced_transfers *srt; struct spi_replaced_transfers *srt;
......
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