mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-12-02 11:59:08 -06:00
18 lines
274 B
C
18 lines
274 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef SMBUS_H
|
||
|
#define SMBUS_H
|
||
|
/**
|
||
|
* \file
|
||
|
*
|
||
|
* Provides functions for reading SPD via SMBUS
|
||
|
*
|
||
|
* Copyright (C) 2004-2022 Samuel Demeulemeester.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Print SMBUS Info
|
||
|
*/
|
||
|
|
||
|
void print_smbus_startup_info(void);
|
||
|
|
||
|
#endif // SMBUS_H
|