Skip to content

Commit

Permalink
fix: Add missing break statement in apple_disp_gp_red_write
Browse files Browse the repository at this point in the history
  • Loading branch information
VisualEhrmanntraut committed Oct 16, 2024
1 parent 3ca23f8 commit 9d0a8d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hw/display/apple_displaypipe_v2.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ static void apple_disp_gp_reg_write(GenPipeState *s, hwaddr addr, uint64_t data)
DISP_DBGLOG("[GP%zu] Frame size <- 0x" HWADDR_FMT_plx, s->index, data);
s->height = data & 0xFFFF;
s->width = (data >> 16) & 0xFFFF;
break;
}
default: {
DISP_DBGLOG("[GP%zu] Unknown write @ 0x" HWADDR_FMT_plx
Expand Down

0 comments on commit 9d0a8d9

Please sign in to comment.