提交 f47b40a4 编写于 作者: C Colin Ian King 提交者: Greg Kroah-Hartman

staging: rtl8192u: make array queuetopipe static const

 Don't populate the array queuetopipe on the stack but instead make it
static const. Also makes the object code smaller by ~50 bytes.
Signed-off-by: NColin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20211129225013.524016-1-colin.i.king@gmail.comSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 7988cf07
...@@ -2531,13 +2531,13 @@ static short rtl8192_init(struct net_device *dev) ...@@ -2531,13 +2531,13 @@ static short rtl8192_init(struct net_device *dev)
#ifdef PIPE12 #ifdef PIPE12
{ {
int i = 0; int i = 0;
u8 queuetopipe[] = {3, 2, 1, 0, 4, 8, 7, 6, 5}; static const u8 queuetopipe[] = {3, 2, 1, 0, 4, 8, 7, 6, 5};
memcpy(priv->txqueue_to_outpipemap, queuetopipe, 9); memcpy(priv->txqueue_to_outpipemap, queuetopipe, 9);
} }
#else #else
{ {
u8 queuetopipe[] = {3, 2, 1, 0, 4, 4, 0, 4, 4}; const u8 queuetopipe[] = {3, 2, 1, 0, 4, 4, 0, 4, 4};
memcpy(priv->txqueue_to_outpipemap, queuetopipe, 9); memcpy(priv->txqueue_to_outpipemap, queuetopipe, 9);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册