Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * SPDX-License-Identifier: GPL-2.0
0003  * Copyright (C) 2018 Intel Corporation
0004  */
0005 
0006 #ifndef __ACPI_NFIT_H
0007 #define __ACPI_NFIT_H
0008 
0009 #if IS_ENABLED(CONFIG_ACPI_NFIT)
0010 int nfit_get_smbios_id(u32 device_handle, u16 *flags);
0011 #else
0012 static inline int nfit_get_smbios_id(u32 device_handle, u16 *flags)
0013 {
0014     return -EOPNOTSUPP;
0015 }
0016 #endif
0017 
0018 #endif /* __ACPI_NFIT_H */