From: Kees Cook Date: Mon, 14 Jul 2014 21:38:11 +0000 (-0700) Subject: doc: fix minor typos in firmware_class README X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b1425189d0f928babb62bdc0609a4cd4d341654d;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git doc: fix minor typos in firmware_class README This is a tiny clean up for typos in the firmware_class README. Signed-off-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- diff --git a/Documentation/firmware_class/README b/Documentation/firmware_class/README index 43fada989e65..71f86859d7d8 100644 --- a/Documentation/firmware_class/README +++ b/Documentation/firmware_class/README @@ -64,7 +64,7 @@ if(request_firmware(&fw_entry, $FIRMWARE, device) == 0) copy_fw_to_device(fw_entry->data, fw_entry->size); - release(fw_entry); + release_firmware(fw_entry); Sample/simple hotplug script: ============================ @@ -74,7 +74,7 @@ HOTPLUG_FW_DIR=/usr/lib/hotplug/firmware/ echo 1 > /sys/$DEVPATH/loading - cat $HOTPLUG_FW_DIR/$FIRMWARE > /sysfs/$DEVPATH/data + cat $HOTPLUG_FW_DIR/$FIRMWARE > /sys/$DEVPATH/data echo 0 > /sys/$DEVPATH/loading Random notes: @@ -123,6 +123,6 @@ -------------------- After firmware cache mechanism is introduced during system sleep, request_firmware can be called safely inside device's suspend and - resume callback, and callers need't cache the firmware by + resume callback, and callers needn't cache the firmware by themselves any more for dealing with firmware loss during system resume.