Skip to content

Commit

Permalink
[r528/t113]fix r528 t113 ddr command
Browse files Browse the repository at this point in the history
  • Loading branch information
jianjunjiang committed Feb 14, 2022
1 parent d65f3c8 commit 7102ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chips/r528_t113.c
Original file line number Diff line number Diff line change
Expand Up @@ -4153,7 +4153,7 @@ static int chip_ddr(struct xfel_ctx_t * ctx, const char * type)
};
if(type)
{
if(strcmp(type, "r528s3") == 0)
if(strcmp(type, "r528-s3") == 0)
{
static const struct ddr3_param_t ddr3 = {
.dram_clk = 792,
Expand Down Expand Up @@ -4186,7 +4186,7 @@ static int chip_ddr(struct xfel_ctx_t * ctx, const char * type)
fel_exec(ctx, 0x00028000);
return 1;
}
else if(strcmp(type, "t113s3") == 0)
else if(strcmp(type, "t113-s3") == 0)
{
static const struct ddr3_param_t ddr3 = {
.dram_clk = 792,
Expand Down

0 comments on commit 7102ff7

Please sign in to comment.