check_unwind: fix request_firmware()
commit045d29f90c4ab21c374ff587b856f3c30368750f
authorDan Carpenter <dan.carpenter@linaro.org>
Thu, 9 Nov 2023 13:12:29 +0000 (9 16:12 +0300)
committerDan Carpenter <dan.carpenter@linaro.org>
Thu, 9 Nov 2023 13:12:29 +0000 (9 16:12 +0300)
treecb8838218d569f4142dad27dda12f7b56d349b64
parentd27ec581410cbdf9822c201b81428bd649d6cd25
check_unwind: fix request_firmware()

When we call request_firmware() it looks like this:

err = request_firmware(&fw, fwname, &hdev->dev)

And the release statement is:

release_firmware(fw);

So the variable where we want to assign the firmware is "fw".  But in this
request firmware the key is "$" when it should be "*$".

Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
check_unwind.c