ALSA: ctxfi: remove unused variable

As of now the pointer to struct dai is not being used anywhere in the
function. So it is safe to remove the variable.
If we are ever doing anything with the container_of(daio, struct dai, daio),
then at that time we can again add the variable.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Sudip Mukherjee 2014-10-21 16:28:47 +05:30 коммит произвёл Takashi Iwai
Родитель 8e64820419
Коммит cf6814f2b5
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -1145,7 +1145,6 @@ static int atc_release_resources(struct ct_atc *atc)
int i; int i;
struct daio_mgr *daio_mgr = NULL; struct daio_mgr *daio_mgr = NULL;
struct dao *dao = NULL; struct dao *dao = NULL;
struct dai *dai = NULL;
struct daio *daio = NULL; struct daio *daio = NULL;
struct sum_mgr *sum_mgr = NULL; struct sum_mgr *sum_mgr = NULL;
struct src_mgr *src_mgr = NULL; struct src_mgr *src_mgr = NULL;
@ -1172,9 +1171,6 @@ static int atc_release_resources(struct ct_atc *atc)
dao = container_of(daio, struct dao, daio); dao = container_of(daio, struct dao, daio);
dao->ops->clear_left_input(dao); dao->ops->clear_left_input(dao);
dao->ops->clear_right_input(dao); dao->ops->clear_right_input(dao);
} else {
dai = container_of(daio, struct dai, daio);
/* some thing to do for dai ... */
} }
daio_mgr->put_daio(daio_mgr, daio); daio_mgr->put_daio(daio_mgr, daio);
} }