mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
b7019ac550
The bulk SPDX addition made all these files into GPL-2.0 licensed files.
However the remainder of the project is MIT-licensed, these files
(primarily header files) were simply missing the boiler plate and got
caught up in the global update.
Fixes: b24413180f
(License cleanup: add SPDX GPL-2.0 license identifier to files with no license)
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
Acked-by: Karol Herbst <kherbst@redhat.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
28 lines
1.1 KiB
C
28 lines
1.1 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NOUVEAU_ACPI_H__
|
|
#define __NOUVEAU_ACPI_H__
|
|
|
|
#define ROM_BIOS_PAGE 4096
|
|
|
|
#if defined(CONFIG_ACPI) && defined(CONFIG_X86)
|
|
bool nouveau_is_optimus(void);
|
|
bool nouveau_is_v1_dsm(void);
|
|
void nouveau_register_dsm_handler(void);
|
|
void nouveau_unregister_dsm_handler(void);
|
|
void nouveau_switcheroo_optimus_dsm(void);
|
|
int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
|
|
bool nouveau_acpi_rom_supported(struct device *);
|
|
void *nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
|
|
#else
|
|
static inline bool nouveau_is_optimus(void) { return false; };
|
|
static inline bool nouveau_is_v1_dsm(void) { return false; };
|
|
static inline void nouveau_register_dsm_handler(void) {}
|
|
static inline void nouveau_unregister_dsm_handler(void) {}
|
|
static inline void nouveau_switcheroo_optimus_dsm(void) {}
|
|
static inline bool nouveau_acpi_rom_supported(struct device *dev) { return false; }
|
|
static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
|
|
static inline void *nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return NULL; }
|
|
#endif
|
|
|
|
#endif
|