Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/video/sisfb.h
26281 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* sisfb.h - definitions for the SiS framebuffer driver
4
*
5
* Copyright (C) 2001-2005 by Thomas Winischhofer, Vienna, Austria.
6
*/
7
#ifndef _LINUX_SISFB_H_
8
#define _LINUX_SISFB_H_
9
10
11
#include <linux/pci.h>
12
#include <uapi/video/sisfb.h>
13
14
#define UNKNOWN_VGA 0
15
#define SIS_300_VGA 1
16
#define SIS_315_VGA 2
17
18
#endif
19
20