Skip to content

Commit

Permalink
ps3av: remove unused fields in ps3av_monitor_quirks
Browse files Browse the repository at this point in the history
Remove the `clear_50' and `clear_vesa' fields of struct
ps3av_monitor_quirk, as they're currently unused.  We can always re-add
them when we really need them.

Signed-off-by: Geert Uytterhoeven <[email protected]>
Cc: "Antonino A. Daplas" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Oct 19, 2007
1 parent 41ab439 commit 3305a6b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions drivers/ps3/ps3av.c
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ static void ps3av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info *

static const struct ps3av_monitor_quirk {
const char *monitor_name;
u32 clear_60, clear_50, clear_vesa;
u32 clear_60;
} ps3av_monitor_quirks[] = {
{
.monitor_name = "DELL 2007WFP",
Expand Down Expand Up @@ -757,10 +757,6 @@ static void ps3av_fixup_monitor_info(struct ps3av_info_monitor *info)
quirk->monitor_name);
info->res_60.res_bits &= ~quirk->clear_60;
info->res_60.native &= ~quirk->clear_60;
info->res_50.res_bits &= ~quirk->clear_50;
info->res_50.native &= ~quirk->clear_50;
info->res_vesa.res_bits &= ~quirk->clear_vesa;
info->res_vesa.native &= ~quirk->clear_vesa;
break;
}
}
Expand Down

0 comments on commit 3305a6b

Please sign in to comment.