The spec says that it doesn't need it, so dropping it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Johan Hovold <johan@hovoldconsulting.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
struct gb_connection *connection = op->connection;
struct gb_firmware_ready_to_boot_request *rtb_request = op->request->payload;
struct device *dev = &connection->dev;
- u8 stage, status;
+ u8 status;
if (op->request->payload_size != sizeof(*rtb_request)) {
dev_err(dev, "%s: Illegal size of ready to boot request (%zu %zu)\n",
return -EINVAL;
}
- stage = rtb_request->stage;
status = rtb_request->status;
/* Return error if the blob was invalid */
/* Firmware protocol Ready to boot request */
struct gb_firmware_ready_to_boot_request {
- __u8 stage;
__u8 status;
} __packed;
/* Firmware protocol Ready to boot response has no payload */