mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
firmware: arm_ffa: Remove unused 'compat_version' variable
The newly added ffa_compatible_version_find() function causes a
build warning because of a variable that is never used:
drivers/firmware/arm_ffa/driver.c:180:6: error: unused variable 'compat_version' [-Werror,-Wunused-variable]
u32 compat_version;
Link: https://lore.kernel.org/r/20211026083400.3444946-1-arnd@kernel.org
Fixes: 8e3f9da608
("firmware: arm_ffa: Handle compatibility with different firmware versions")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
This commit is contained in:
parent
82a8daaecf
commit
01537a078b
@ -177,7 +177,6 @@ static struct ffa_drv_info *drv_info;
|
|||||||
*/
|
*/
|
||||||
static u32 ffa_compatible_version_find(u32 version)
|
static u32 ffa_compatible_version_find(u32 version)
|
||||||
{
|
{
|
||||||
u32 compat_version;
|
|
||||||
u16 major = MAJOR_VERSION(version), minor = MINOR_VERSION(version);
|
u16 major = MAJOR_VERSION(version), minor = MINOR_VERSION(version);
|
||||||
u16 drv_major = MAJOR_VERSION(FFA_DRIVER_VERSION);
|
u16 drv_major = MAJOR_VERSION(FFA_DRIVER_VERSION);
|
||||||
u16 drv_minor = MINOR_VERSION(FFA_DRIVER_VERSION);
|
u16 drv_minor = MINOR_VERSION(FFA_DRIVER_VERSION);
|
||||||
|
Loading…
Reference in New Issue
Block a user