Obviously, variable 'copied' is initialized to zero. But it is not used.
hence just remove it.
Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
 {
        local_info_t *local = (local_info_t *) data;
        int head = local->io_debug_head;
-       int start_bytes, left, copy, copied;
+       int start_bytes, left, copy;
 
        if (off + count > PRISM2_IO_DEBUG_SIZE * 4) {
                *eof = 1;
                count = PRISM2_IO_DEBUG_SIZE * 4 - off;
        }
 
-       copied = 0;
        start_bytes = (PRISM2_IO_DEBUG_SIZE - head) * 4;
        left = count;