/* * arch/arm/mach-rpc/include/mach/acornfb.h * * Copyright (C) 1999 Russell King * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * AcornFB architecture specific code */ #define acornfb_bandwidth(var) ((var)->pixclock * 8 / (var)->bits_per_pixel)
static inline int acornfb_valid_pixrate(struct fb_var_screeninfo *var) { u_long limit; if (!var->pixclock) return 0; /* * Limits below are taken from RISC OS bandwidthlimit file */ if (current_par.using_vram) { if (current_par.vram_half_sam == 2048) limit = 6578; else limit = 13157; } else { limit = 26315; } return acornfb_bandwidth(var) >= limit; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Teichmann | 66 | 100.00% | 1 | 100.00% |
Total | 66 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 147 | 100.00% | 1 | 100.00% |
Total | 147 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 201 | 82.38% | 1 | 50.00% |
Peter Teichmann | 43 | 17.62% | 1 | 50.00% |
Total | 244 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 363 | 76.26% | 1 | 33.33% |
Peter Teichmann | 112 | 23.53% | 1 | 33.33% |
Russell King | 1 | 0.21% | 1 | 33.33% |
Total | 476 | 100.00% | 3 | 100.00% |