From: Fengguang Wu Date: Wed, 28 Feb 2018 02:55:50 +0000 (+0800) Subject: staging: fsl-mc/dpio: qbman_pull_desc_set_token() can be static X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7c979b473121251aaf59e2521a508ea50551fa66;p=openwrt%2Fstaging%2Fblogic.git staging: fsl-mc/dpio: qbman_pull_desc_set_token() can be static Fixes: 1628e2e4dc76 ("staging: fsl-mc/dpio: allow the driver to compile multi-arch") Signed-off-by: Fengguang Wu Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c b/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c index f57c151cf1e8..7b75c934b201 100644 --- a/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c +++ b/drivers/staging/fsl-mc/bus/dpio/qbman-portal.c @@ -522,7 +522,7 @@ void qbman_pull_desc_set_numframes(struct qbman_pull_desc *d, u8 numframes) d->numf = numframes - 1; } -void qbman_pull_desc_set_token(struct qbman_pull_desc *d, u8 token) +static void qbman_pull_desc_set_token(struct qbman_pull_desc *d, u8 token) { d->tok = token; }