5e0f8ad07b
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the named license or any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 59 temple place suite 330 boston ma 02111 1307 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 7 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190520170856.731149235@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
25 lines
606 B
C
25 lines
606 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* sisfb.h - definitions for the SiS framebuffer driver
|
|
*
|
|
* Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria.
|
|
*/
|
|
#ifndef _LINUX_SISFB_H_
|
|
#define _LINUX_SISFB_H_
|
|
|
|
|
|
#include <linux/pci.h>
|
|
#include <uapi/video/sisfb.h>
|
|
|
|
#define UNKNOWN_VGA 0
|
|
#define SIS_300_VGA 1
|
|
#define SIS_315_VGA 2
|
|
|
|
#define SISFB_HAVE_MALLOC_NEW
|
|
extern void sis_malloc(struct sis_memreq *req);
|
|
extern void sis_malloc_new(struct pci_dev *pdev, struct sis_memreq *req);
|
|
|
|
extern void sis_free(u32 base);
|
|
extern void sis_free_new(struct pci_dev *pdev, u32 base);
|
|
#endif
|