iPXE
Functions
null_smbios.c File Reference

Null SMBIOS API. More...

#include <errno.h>
#include <ipxe/smbios.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static int null_find_smbios (struct smbios *smbios __unused)
 Find SMBIOS. More...
 
 PROVIDE_SMBIOS (null, find_smbios, null_find_smbios)
 

Detailed Description

Null SMBIOS API.

Definition in file null_smbios.c.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ null_find_smbios()

static int null_find_smbios ( struct smbios *smbios  __unused)
static

Find SMBIOS.

Parameters
smbiosSMBIOS entry point descriptor structure to fill in
Return values
rcReturn status code

Definition at line 42 of file null_smbios.c.

42  {
43 
44  return -ENOTSUP;
45 }
#define ENOTSUP
Operation not supported.
Definition: errno.h:589

References ENOTSUP.

◆ PROVIDE_SMBIOS()

PROVIDE_SMBIOS ( null  ,
find_smbios  ,
null_find_smbios   
)