Skip to content

Commit

Permalink
Indent changes (Xilinx#7817)
Browse files Browse the repository at this point in the history
Co-authored-by: Karthik D M G <[email protected]>
  • Loading branch information
karthdmg-xilinx and Karthik D M G authored Nov 27, 2023
1 parent 236882e commit 7d2d681
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/runtime_src/core/include/xgq_cmd_vmr.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ enum xgq_cmd_log_page_type {
*/
typedef enum _xgq_cmd_sc_status
{
XGQ_CMD_SC_PENDING = 0x0,
XGQ_CMD_SC_UNAVAILABLE = 0x1,
XGQ_CMD_SC_READY = 0x2,
XGQ_CMD_SC_PENDING = 0x0,
XGQ_CMD_SC_UNAVAILABLE = 0x1,
XGQ_CMD_SC_READY = 0x2,
} xgq_cmd_sc_status;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3419,7 +3419,7 @@ static bool vmr_wait_for_sc_ready(struct xocl_xgq_vmr *xgq)
msleep(SC_WAIT_INTERVAL_MSEC);
sc_status = vmr_get_sc_status(xgq);
if(sc_status == XGQ_CMD_SC_UNAVAILABLE) {
XGQ_ERR(xgq, "No SC firmware as part of ext fpt");
XGQ_ERR(xgq, "No SC firmware as part of ext fpt");
return false;
}
if (sc_status == XGQ_CMD_SC_READY) {
Expand Down

0 comments on commit 7d2d681

Please sign in to comment.