提交 e2ff8406 编写于 作者: S Sachin Kamat 提交者: Takashi Iwai

ALSA: trident: Remove unused variable in trident_memory.c

'prev' is not used in the function. Remove it.
Signed-off-by: NSachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 8d904864
...@@ -139,12 +139,11 @@ static inline void *offset_ptr(struct snd_trident *trident, int offset) ...@@ -139,12 +139,11 @@ static inline void *offset_ptr(struct snd_trident *trident, int offset)
static struct snd_util_memblk * static struct snd_util_memblk *
search_empty(struct snd_util_memhdr *hdr, int size) search_empty(struct snd_util_memhdr *hdr, int size)
{ {
struct snd_util_memblk *blk, *prev; struct snd_util_memblk *blk;
int page, psize; int page, psize;
struct list_head *p; struct list_head *p;
psize = get_aligned_page(size + ALIGN_PAGE_SIZE -1); psize = get_aligned_page(size + ALIGN_PAGE_SIZE -1);
prev = NULL;
page = 0; page = 0;
list_for_each(p, &hdr->block) { list_for_each(p, &hdr->block) {
blk = list_entry(p, struct snd_util_memblk, list); blk = list_entry(p, struct snd_util_memblk, list);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册