1
0
Fork 0

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 <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Fengguang Wu 2018-02-28 10:55:50 +08:00 committed by Greg Kroah-Hartman
parent 75c583ab97
commit 7c979b4731
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}