Skip to content

Commit

Permalink
ichspi.c: effectively disable prettyprint_ich9_reg_hsfc()
Browse files Browse the repository at this point in the history
[WORKAROUND]

Due to the fact that --progress is broken, heads relies on debug output
to track the progress.

This call makes the debug output so much cluttered.

See:
#11 (comment)

Change-Id: Icd0f7de8a59382a4cf89afc63150ab1e7ca308dd
Signed-off-by: Maciej Pijanowski <[email protected]>
  • Loading branch information
macpijan committed Feb 9, 2023
1 parent c9e65e0 commit 6b2061b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ichspi.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ static void prettyprint_ich9_reg_hsfs(uint16_t reg_val, enum ich_chipset ich_gen

static void prettyprint_ich9_reg_hsfc(uint16_t reg_val, enum ich_chipset ich_gen)
{
#if 0
msg_pdbg("HSFC: ");
pprint_reg(HSFC, FGO, reg_val, ", ");
switch (ich_gen) {
Expand All @@ -497,6 +498,7 @@ static void prettyprint_ich9_reg_hsfc(uint16_t reg_val, enum ich_chipset ich_gen
}
pprint_reg(HSFC, FDBC, reg_val, ", ");
pprint_reg(HSFC, SME, reg_val, "\n");
#endif
}

static void prettyprint_ich9_reg_ssfs(uint32_t reg_val)
Expand Down

0 comments on commit 6b2061b

Please sign in to comment.