blob: 9d657e9b1c8dd977771d0273f1582d6a28e3de92 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <stdint.h>
#include <northbridge/intel/gm45/gm45.h>
int get_blc_values(const struct blc_pwm_t **entries)
{
return 0;
}
|