Commit 6c56026b authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman

drivers/misc/sgi-gru: remove unused variable

dw was only assigned some value and was never reused.
Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Acked-by: default avatarDimitri Sivanich <sivanich@sgi.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bba57f8f
...@@ -1002,7 +1002,6 @@ static int quicktest1(unsigned long arg) ...@@ -1002,7 +1002,6 @@ static int quicktest1(unsigned long arg)
{ {
struct gru_message_queue_desc mqd; struct gru_message_queue_desc mqd;
void *p, *mq; void *p, *mq;
unsigned long *dw;
int i, ret = -EIO; int i, ret = -EIO;
char mes[GRU_CACHE_LINE_BYTES], *m; char mes[GRU_CACHE_LINE_BYTES], *m;
...@@ -1012,7 +1011,6 @@ static int quicktest1(unsigned long arg) ...@@ -1012,7 +1011,6 @@ static int quicktest1(unsigned long arg)
return -ENOMEM; return -ENOMEM;
mq = ALIGNUP(p, 1024); mq = ALIGNUP(p, 1024);
memset(mes, 0xee, sizeof(mes)); memset(mes, 0xee, sizeof(mes));
dw = mq;
gru_create_message_queue(&mqd, mq, 8 * GRU_CACHE_LINE_BYTES, 0, 0, 0); gru_create_message_queue(&mqd, mq, 8 * GRU_CACHE_LINE_BYTES, 0, 0, 0);
for (i = 0; i < 6; i++) { for (i = 0; i < 6; i++) {
......
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