Merge pull request #32 from marineam/tpm

tpm: fix warnings when compiling for platforms other than pc and efi
This commit is contained in:
Michael Marineau 2016-08-22 12:53:07 -07:00 committed by GitHub
commit 3d1efb83ed

View file

@ -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;
}; };