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: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
image < file_hdr->nDspImages;
image++) {
- temp =
- (u16) (dsp_img_info->
- version);
- templong = temp;
- temp =
- (u16) (dsp_img_info->
- version >> 16);
- templong |= (temp << 16);
- if (templong ==
- (u32) requested_version) {
+ if (dsp_img_info->version ==
+ requested_version) {
correct_version = TRUE;
DEBUG
("FT1000:download: correct_version is TRUE\n");