Commit 3305a6bc2c4dbd8f7fde1b9941ccb260bc6355c2

Authored by Geert Uytterhoeven
Committed by Linus Torvalds
1 parent 41ab4396e1

ps3av: remove unused fields in ps3av_monitor_quirks

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 <Geert.Uytterhoeven@sonycom.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 5 deletions Side-by-side Diff

... ... @@ -729,7 +729,7 @@
729 729  
730 730 static const struct ps3av_monitor_quirk {
731 731 const char *monitor_name;
732   - u32 clear_60, clear_50, clear_vesa;
  732 + u32 clear_60;
733 733 } ps3av_monitor_quirks[] = {
734 734 {
735 735 .monitor_name = "DELL 2007WFP",
... ... @@ -757,10 +757,6 @@
757 757 quirk->monitor_name);
758 758 info->res_60.res_bits &= ~quirk->clear_60;
759 759 info->res_60.native &= ~quirk->clear_60;
760   - info->res_50.res_bits &= ~quirk->clear_50;
761   - info->res_50.native &= ~quirk->clear_50;
762   - info->res_vesa.res_bits &= ~quirk->clear_vesa;
763   - info->res_vesa.native &= ~quirk->clear_vesa;
764 760 break;
765 761 }
766 762 }