diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:49:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:49:45 +0000 |
commit | 2c3c1048746a4622d8c89a29670120dc8fab93c4 (patch) | |
tree | 848558de17fb3008cdf4d861b01ac7781903ce39 /include/video/sisfb.h | |
parent | Initial commit. (diff) | |
download | linux-2c3c1048746a4622d8c89a29670120dc8fab93c4.tar.xz linux-2c3c1048746a4622d8c89a29670120dc8fab93c4.zip |
Adding upstream version 6.1.76.upstream/6.1.76
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'include/video/sisfb.h')
-rw-r--r-- | include/video/sisfb.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/video/sisfb.h b/include/video/sisfb.h new file mode 100644 index 000000000..76ff628a1 --- /dev/null +++ b/include/video/sisfb.h @@ -0,0 +1,24 @@ +/* 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 |