mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
34c7fdb8fd
An SPDX-License-Identifier is already in place. There is no need to duplicate part of the corresponding license. While at it, a few comments at the end of some .h files have been updated to reflect the correct include guard name (missing '_' and co.) Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
35 lines
896 B
C
35 lines
896 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* ddbridge-hw.h: Digital Devices bridge hardware maps
|
|
*
|
|
* Copyright (C) 2010-2017 Digital Devices GmbH
|
|
* Ralph Metzler <rjkm@metzlerbros.de>
|
|
* Marcus Metzler <mocm@metzlerbros.de>
|
|
*/
|
|
|
|
#ifndef _DDBRIDGE_HW_H_
|
|
#define _DDBRIDGE_HW_H_
|
|
|
|
#include "ddbridge.h"
|
|
|
|
/******************************************************************************/
|
|
|
|
#define DDVID 0xdd01 /* Digital Devices Vendor ID */
|
|
|
|
/******************************************************************************/
|
|
|
|
struct ddb_device_id {
|
|
u16 vendor;
|
|
u16 device;
|
|
u16 subvendor;
|
|
u16 subdevice;
|
|
const struct ddb_info *info;
|
|
};
|
|
|
|
/******************************************************************************/
|
|
|
|
const struct ddb_info *get_ddb_info(u16 vendor, u16 device,
|
|
u16 subvendor, u16 subdevice);
|
|
|
|
#endif /* _DDBRIDGE_HW_H_ */
|