media: ccs: Get static data version minor correctly
Fix obtaining CCS static data version minor part correctly. Instead, the upper 8 bits were obtained from the major version number. Fixes: a6b396f410b1 ("media: ccs: Add CCS static data parser library") Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
ff474acc4b
commit
1bc0b1baf2
@ -152,7 +152,7 @@ static int ccs_data_parse_version(struct bin_container *bin,
|
||||
vv->version_major = ((u16)v->static_data_version_major[0] << 8) +
|
||||
v->static_data_version_major[1];
|
||||
vv->version_minor = ((u16)v->static_data_version_minor[0] << 8) +
|
||||
v->static_data_version_major[1];
|
||||
v->static_data_version_minor[1];
|
||||
vv->date_year = ((u16)v->year[0] << 8) + v->year[1];
|
||||
vv->date_month = v->month;
|
||||
vv->date_day = v->day;
|
||||
|
Loading…
x
Reference in New Issue
Block a user