Files
carbon 0545e9dc6d init version 2024-05-07
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.
2024-05-07 19:36:36 +08:00

36 lines
796 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Generation of x86-specific ACPI tables
*
* Copyright 2020 Google LLC
*/
#ifndef __ASM_ACPIGEN_H__
#define __ASM_ACPIGEN_H__
struct acpi_ctx;
/**
* acpigen_write_empty_pct() - Write an empty PCT
*
* See ACPI v6.3 section 8.4.6.1: _PCT (Performance Control)
*
* This writes an empty table so that CPU performance works as expected
*
* @ctx: ACPI context pointer
*/
void acpigen_write_empty_pct(struct acpi_ctx *ctx);
/**
* acpigen_write_empty_ptc() - Write an empty PTC
*
* See ACPI v6.3 section 8.4.5.1: _PTC (Processor Throttling Control)
*
* This writes an empty table so that CPU performance works as expected
*
* @ctx: ACPI context pointer
*/
void acpigen_write_empty_ptc(struct acpi_ctx *ctx);
#endif /* __ASM_ACPI_H__ */