Release 4.14 arch/sparc/include/asm/fb.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SPARC_FB_H_
#define _SPARC_FB_H_
#include <linux/console.h>
#include <linux/fb.h>
#include <linux/fs.h>
#include <asm/page.h>
#include <asm/prom.h>
static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
unsigned long off)
{
#ifdef CONFIG_SPARC64
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 34 | 91.89% | 1 | 50.00% |
Antonino A. Daplas | 3 | 8.11% | 1 | 50.00% |
Total | 37 | 100.00% | 2 | 100.00% |
static inline int fb_is_primary_device(struct fb_info *info)
{
struct device *dev = info->device;
struct device_node *node;
if (console_set_on_cmdline)
return 0;
node = dev->of_node;
if (node &&
node == of_console_device)
return 1;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 37 | 69.81% | 2 | 50.00% |
Antonino A. Daplas | 15 | 28.30% | 1 | 25.00% |
Grant C. Likely | 1 | 1.89% | 1 | 25.00% |
Total | 53 | 100.00% | 4 | 100.00% |
#endif /* _SPARC_FB_H_ */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 86 | 74.78% | 3 | 42.86% |
Antonino A. Daplas | 27 | 23.48% | 2 | 28.57% |
Greg Kroah-Hartman | 1 | 0.87% | 1 | 14.29% |
Grant C. Likely | 1 | 0.87% | 1 | 14.29% |
Total | 115 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.