Lines Matching defs:firmware
130 /* Expose the loaded / running firmware name via sysfs */
135 const char *firmware = rproc->firmware;
140 * simply display a generic string rather then rproc->firmware.
146 firmware = "unknown";
148 return sprintf(buf, "%s\n", firmware);
151 /* Change firmware name via sysfs */
167 dev_err(dev, "can't change firmware while running\n");
174 dev_err(dev, "can't provide a NULL firmware\n");
185 kfree(rproc->firmware);
186 rproc->firmware = p;
192 static DEVICE_ATTR_RW(firmware);