23 lines
592 B
C
23 lines
592 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_FB_H_
|
|
#define _ASM_FB_H_
|
|
|
|
#include <asm/page.h>
|
|
|
|
static inline pgprot_t pgprot_framebuffer(pgprot_t prot,
|
|
unsigned long vm_start, unsigned long vm_end,
|
|
unsigned long offset)
|
|
{
|
|
/*
|
|
* PowerPC's implementation of phys_mem_access_prot() does
|
|
* not use the file argument. Set it to NULL in preparation
|
|
* of later updates to the interface.
|
|
*/
|
|
return phys_mem_access_prot(NULL, PHYS_PFN(offset), vm_end - vm_start, prot);
|
|
}
|
|
#define pgprot_framebuffer pgprot_framebuffer
|
|
|
|
#include <asm-generic/fb.h>
|
|
|
|
#endif /* _ASM_FB_H_ */
|