diff options
author | Dave Airlie <airlied@linux.ie> | 2006-03-23 20:31:14 -0500 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-04-02 21:43:29 -0400 |
commit | 46f60b8e67e6fceede851dc69cdee2d7c0de27b9 (patch) | |
tree | 844bfba5d06f348bdd443cdd471d5d814337d141 /drivers/video/intelfb/intelfbhw.c | |
parent | 9a90603f65dd5046ddcd586158abcad7784892b6 (diff) |
This patch makes a needlessly global struct static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/video/intelfb/intelfbhw.c')
-rw-r--r-- | drivers/video/intelfb/intelfbhw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/intelfb/intelfbhw.c b/drivers/video/intelfb/intelfbhw.c index 73e1902dc3bb..0c3553c35808 100644 --- a/drivers/video/intelfb/intelfbhw.c +++ b/drivers/video/intelfb/intelfbhw.c | |||
@@ -56,7 +56,7 @@ struct pll_min_max { | |||
56 | #define PLLS_I9xx 1 | 56 | #define PLLS_I9xx 1 |
57 | #define PLLS_MAX 2 | 57 | #define PLLS_MAX 2 |
58 | 58 | ||
59 | struct pll_min_max plls[PLLS_MAX] = { | 59 | static struct pll_min_max plls[PLLS_MAX] = { |
60 | { 108, 140, 18, 26, 6, 16, 3, 16, 4, 128, 0, 31, 930000, 1400000, 165000, 4, 22 }, //I8xx | 60 | { 108, 140, 18, 26, 6, 16, 3, 16, 4, 128, 0, 31, 930000, 1400000, 165000, 4, 22 }, //I8xx |
61 | { 75, 120, 10, 20, 5, 9, 4, 7, 5, 80, 1, 8, 930000, 2800000, 200000, 10, 5 } //I9xx | 61 | { 75, 120, 10, 20, 5, 9, 4, 7, 5, 80, 1, 8, 930000, 2800000, 200000, 10, 5 } //I9xx |
62 | }; | 62 | }; |