diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2007-10-19 02:39:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 14:53:33 -0400 |
commit | 3305a6bc2c4dbd8f7fde1b9941ccb260bc6355c2 (patch) | |
tree | 60700fbce147c8264966955ddedba21d46370978 /drivers/ps3/ps3av.c | |
parent | 41ab4396e19fba338baf28044d3e48385744b930 (diff) |
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>
Diffstat (limited to 'drivers/ps3/ps3av.c')
-rw-r--r-- | drivers/ps3/ps3av.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/ps3/ps3av.c b/drivers/ps3/ps3av.c index 397f4ce849dc..87b3493d88e5 100644 --- a/drivers/ps3/ps3av.c +++ b/drivers/ps3/ps3av.c | |||
@@ -729,7 +729,7 @@ static void ps3av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info * | |||
729 | 729 | ||
730 | static const struct ps3av_monitor_quirk { | 730 | static const struct ps3av_monitor_quirk { |
731 | const char *monitor_name; | 731 | const char *monitor_name; |
732 | u32 clear_60, clear_50, clear_vesa; | 732 | u32 clear_60; |
733 | } ps3av_monitor_quirks[] = { | 733 | } ps3av_monitor_quirks[] = { |
734 | { | 734 | { |
735 | .monitor_name = "DELL 2007WFP", | 735 | .monitor_name = "DELL 2007WFP", |
@@ -757,10 +757,6 @@ static void ps3av_fixup_monitor_info(struct ps3av_info_monitor *info) | |||
757 | quirk->monitor_name); | 757 | quirk->monitor_name); |
758 | info->res_60.res_bits &= ~quirk->clear_60; | 758 | info->res_60.res_bits &= ~quirk->clear_60; |
759 | info->res_60.native &= ~quirk->clear_60; | 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 | break; | 760 | break; |
765 | } | 761 | } |
766 | } | 762 | } |