提交 dfc9539f 编写于 作者: M Marek Belisko 提交者: Greg Kroah-Hartman

staging: ft1000: Remove unnecessary assignment.

dsp_img_info->version and requested_version have same type
so additional temporary variable creation could be omitted
because variables could be compares directly.
Signed-off-by: NMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 e7af0786
...@@ -1072,16 +1072,8 @@ u16 scram_dnldr(struct ft1000_device *ft1000dev, void *pFileStart, ...@@ -1072,16 +1072,8 @@ u16 scram_dnldr(struct ft1000_device *ft1000dev, void *pFileStart,
image < file_hdr->nDspImages; image < file_hdr->nDspImages;
image++) { image++) {
temp = if (dsp_img_info->version ==
(u16) (dsp_img_info-> requested_version) {
version);
templong = temp;
temp =
(u16) (dsp_img_info->
version >> 16);
templong |= (temp << 16);
if (templong ==
(u32) requested_version) {
correct_version = TRUE; correct_version = TRUE;
DEBUG DEBUG
("FT1000:download: correct_version is TRUE\n"); ("FT1000:download: correct_version is TRUE\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册