drivers/crb: Replace __RAMSTAGE_ guards
Change-Id: Ie2e6cdddc1edb95c442a4240267fe1fd6a11d37e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36698 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
baa16e9c25
commit
35a047c4e5
@ -104,8 +104,6 @@ int tis_sendrecv(const uint8_t *sendbuf, size_t sbuf_size, uint8_t *recvbuf, siz
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __RAMSTAGE__
|
|
||||||
|
|
||||||
static void crb_tpm_fill_ssdt(struct device *dev)
|
static void crb_tpm_fill_ssdt(struct device *dev)
|
||||||
{
|
{
|
||||||
const char *path = acpi_device_path(dev);
|
const char *path = acpi_device_path(dev);
|
||||||
@ -139,7 +137,7 @@ static const char *crb_tpm_acpi_name(const struct device *dev)
|
|||||||
return "TPM";
|
return "TPM";
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct device_operations crb_ops = {
|
static struct device_operations __unused crb_ops = {
|
||||||
.read_resources = DEVICE_NOOP,
|
.read_resources = DEVICE_NOOP,
|
||||||
.set_resources = DEVICE_NOOP,
|
.set_resources = DEVICE_NOOP,
|
||||||
#if CONFIG(HAVE_ACPI_TABLES)
|
#if CONFIG(HAVE_ACPI_TABLES)
|
||||||
@ -151,9 +149,12 @@ static struct device_operations crb_ops = {
|
|||||||
|
|
||||||
static void enable_dev(struct device *dev)
|
static void enable_dev(struct device *dev)
|
||||||
{
|
{
|
||||||
|
#if !DEVTREE_EARLY
|
||||||
dev->ops = &crb_ops;
|
dev->ops = &crb_ops;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations drivers_crb_ops = {CHIP_NAME("CRB TPM").enable_dev = enable_dev};
|
struct chip_operations drivers_crb_ops = {
|
||||||
|
CHIP_NAME("CRB TPM")
|
||||||
#endif /* __RAMSTAGE__ */
|
.enable_dev = enable_dev
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user