commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
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
|