Skip to content

Commit 85bfb4a

Browse files
jwrdegoedegregkh
authored andcommitted
Input: icn8505 - Switch to firmware_request_platform for retreiving the fw
Unfortunately sofar we have been unable to get permission to redistribute icn8505 touchscreen firmwares in linux-firmware. This means that people need to find and install the firmware themselves before the touchscreen will work Some UEFI/x86 tablets with an icn8505 touchscreen have a copy of the fw embedded in their UEFI boot-services code. This commit makes the icn8505 driver use the new firmware_request_platform function, which will fallback to looking for such an embedded copy when direct filesystem lookup fails. This will make the touchscreen work OOTB on devices where there is a fw copy embedded in the UEFI code. Acked-by: Dmitry Torokhov <[email protected]> Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent b4a87bc commit 85bfb4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/input/touchscreen/chipone_icn8505.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ static int icn8505_upload_fw(struct icn8505_data *icn8505)
288288
* we may need it at resume. Having loaded it once will make the
289289
* firmware class code cache it at suspend/resume.
290290
*/
291-
error = request_firmware(&fw, icn8505->firmware_name, dev);
291+
error = firmware_request_platform(&fw, icn8505->firmware_name, dev);
292292
if (error) {
293293
dev_err(dev, "Firmware request error %d\n", error);
294294
return error;

0 commit comments

Comments
 (0)