diff options
author | Konrad Rzeszutek Wilk | 2013-08-30 09:02:27 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk | 2013-08-30 13:24:14 -0400 |
commit | 713efcabca1fffbbb253a33ff0f8fda532633064 (patch) | |
tree | 968e8232867c5a1a6fd26d50755be4f8bcac2a1b /drivers/char | |
parent | 04660bb5d0e4104e01a8fc34e5d51de1d84c09bf (diff) |
drivers/xen-tpmfront: Fix compile issue with missing option.
Randy reports:
x86_64:
drivers/built-in.o: In function `xen_tpmfront_init':
xen-tpmfront.c:(.init.text+0x257c): undefined reference to `xenbus_register_frontend'
This is nicely fixed by selecting the XenBus frontend module.
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tpm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/tpm/Kconfig b/drivers/char/tpm/Kconfig index 205ed35c1a31..94c0c74434ea 100644 --- a/drivers/char/tpm/Kconfig +++ b/drivers/char/tpm/Kconfig @@ -94,6 +94,7 @@ config TCG_ST33_I2C config TCG_XEN tristate "XEN TPM Interface" depends on TCG_TPM && XEN + select XEN_XENBUS_FRONTEND ---help--- If you want to make TPM support available to a Xen user domain, say Yes and it will be accessible from within Linux. See |