]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - drivers/base/firmware_loader/firmware.h
Merge tag 'for-5.6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
[linux.git] / drivers / base / firmware_loader / firmware.h
index 7ecd590e67fe1f11829d6aa6bd3fd78b21f04497..8656e5239a80f330cab868394ef1622b6b664f59 100644 (file)
  *     firmware file lookup on storage is avoided. Used for calls where the
  *     file may be too big, or where the driver takes charge of its own
  *     firmware caching mechanism.
- * @FW_OPT_NOFALLBACK: Disable the fallback mechanism. Takes precedence over
- *     &FW_OPT_UEVENT and &FW_OPT_USERHELPER.
+ * @FW_OPT_NOFALLBACK_SYSFS: Disable the sysfs fallback mechanism. Takes
+ *     precedence over &FW_OPT_UEVENT and &FW_OPT_USERHELPER.
  */
 enum fw_opt {
-       FW_OPT_UEVENT =         BIT(0),
-       FW_OPT_NOWAIT =         BIT(1),
-       FW_OPT_USERHELPER =     BIT(2),
-       FW_OPT_NO_WARN =        BIT(3),
-       FW_OPT_NOCACHE =        BIT(4),
-       FW_OPT_NOFALLBACK =     BIT(5),
+       FW_OPT_UEVENT                   = BIT(0),
+       FW_OPT_NOWAIT                   = BIT(1),
+       FW_OPT_USERHELPER               = BIT(2),
+       FW_OPT_NO_WARN                  = BIT(3),
+       FW_OPT_NOCACHE                  = BIT(4),
+       FW_OPT_NOFALLBACK_SYSFS         = BIT(5),
 };
 
 enum fw_status {