mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 14:02:06 -04:00
drm/nouveau: remove symlinks, move core/ to nvkm/ (no code changes)
The symlinks were annoying some people, and they're not used anywhere else in the kernel tree. The include directory structure has been changed so that symlinks aren't needed anymore. NVKM has been moved from core/ to nvkm/ to make it more obvious as to what the directory is for, and as some minor prep for when NVKM gets split out into its own module (virt) at a later date. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
30
drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/extdev.h
Normal file
30
drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/extdev.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#ifndef __NVBIOS_EXTDEV_H__
|
||||
#define __NVBIOS_EXTDEV_H__
|
||||
|
||||
struct nouveau_bios;
|
||||
|
||||
enum nvbios_extdev_type {
|
||||
NVBIOS_EXTDEV_LM89 = 0x02,
|
||||
NVBIOS_EXTDEV_VT1103M = 0x40,
|
||||
NVBIOS_EXTDEV_PX3540 = 0x41,
|
||||
NVBIOS_EXTDEV_VT1105M = 0x42, /* or close enough... */
|
||||
NVBIOS_EXTDEV_ADT7473 = 0x70, /* can also be a LM64 */
|
||||
NVBIOS_EXTDEV_HDCP_EEPROM = 0x90,
|
||||
NVBIOS_EXTDEV_NONE = 0xff,
|
||||
};
|
||||
|
||||
struct nvbios_extdev_func {
|
||||
u8 type;
|
||||
u8 addr;
|
||||
u8 bus;
|
||||
};
|
||||
|
||||
int
|
||||
nvbios_extdev_parse(struct nouveau_bios *, int, struct nvbios_extdev_func *);
|
||||
|
||||
int
|
||||
nvbios_extdev_find(struct nouveau_bios *, enum nvbios_extdev_type,
|
||||
struct nvbios_extdev_func *);
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user