Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dfc9539f authored by Marek Belisko's avatar Marek Belisko Committed by Greg Kroah-Hartman
Browse files

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: default avatarMarek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e7af0786
Loading
Loading
Loading
Loading
+2 −10
Original line number Diff line number Diff line
@@ -1072,16 +1072,8 @@ u16 scram_dnldr(struct ft1000_device *ft1000dev, void *pFileStart,
					     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");