Commit 7c979b47 authored by Fengguang Wu's avatar Fengguang Wu Committed by Greg Kroah-Hartman

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: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 75c583ab
...@@ -522,7 +522,7 @@ void qbman_pull_desc_set_numframes(struct qbman_pull_desc *d, u8 numframes) ...@@ -522,7 +522,7 @@ void qbman_pull_desc_set_numframes(struct qbman_pull_desc *d, u8 numframes)
d->numf = numframes - 1; 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; d->tok = token;
} }
......
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