Merge pull request #32 from marineam/tpm
tpm: fix warnings when compiling for platforms other than pc and efi
This commit is contained in:
commit
3d1efb83ed
1 changed files with 11 additions and 6 deletions
|
@ -75,12 +75,17 @@ grub_err_t grub_tpm_execute(PassThroughToTPM_InputParamBlock *inbuf,
|
||||||
grub_err_t grub_tpm_log_event(unsigned char *buf, grub_size_t size,
|
grub_err_t grub_tpm_log_event(unsigned char *buf, grub_size_t size,
|
||||||
grub_uint8_t pcr, const char *description);
|
grub_uint8_t pcr, const char *description);
|
||||||
#else
|
#else
|
||||||
static inline grub_err_t grub_tpm_execute(PassThroughToTPM_InputParamBlock *inbuf,
|
static inline grub_err_t grub_tpm_execute(
|
||||||
PassThroughToTPM_OutputParamBlock *outbuf) { return 0; };
|
PassThroughToTPM_InputParamBlock *inbuf __attribute__ ((unused)),
|
||||||
static inline grub_err_t grub_tpm_log_event(unsigned char *buf,
|
PassThroughToTPM_OutputParamBlock *outbuf __attribute__ ((unused)))
|
||||||
grub_size_t size,
|
{
|
||||||
grub_uint8_t pcr,
|
return 0;
|
||||||
const char *description)
|
};
|
||||||
|
static inline grub_err_t grub_tpm_log_event(
|
||||||
|
unsigned char *buf __attribute__ ((unused)),
|
||||||
|
grub_size_t size __attribute__ ((unused)),
|
||||||
|
grub_uint8_t pcr __attribute__ ((unused)),
|
||||||
|
const char *description __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue