From: Sudip Mukherjee Date: Mon, 29 Sep 2014 09:03:21 +0000 (+0530) Subject: ALSA: ctxfi: changed void * to struct hw * X-Git-Tag: fixes-against-v3.18-rc2~128^2~14 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66640898edb7b0ef452e179753e8d6130b35fd83;p=pandora-kernel.git ALSA: ctxfi: changed void * to struct hw * in the code we have void *hw and while using we are always typecasting it to (struct hw *). it is better to use void type of pointer when we store different types of pointer , but in this code we are only having struct hw. So changed all the relevant reference of void *hw to struct hw *hw, without any modification of the existing code logic. the next patch of the series will remove the typecasting which is not required now. Signed-off-by: Sudip Mukherjee Signed-off-by: Takashi Iwai --- Reading git-diff-tree failed