tpm: clean up empty lines in .c and .h files

This commit is contained in:
Mateusz Guzik 2020-09-01 21:50:31 +00:00
parent 93a6b43939
commit 0d7f4d16dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=365144
6 changed files with 2 additions and 13 deletions

View File

@ -146,7 +146,6 @@ __FBSDID("$FreeBSD$");
/* Set when enabling legacy interface in host bridge. */
int tpm_enabled;
#ifdef __FreeBSD__
#define TPMSOFTC(dev) \
((struct tpm_softc *)dev->si_drv1)
@ -244,7 +243,6 @@ tpm_identify(driver_t *driver, device_t parent)
}
#endif
int
tpm_attach(device_t dev)
{
@ -270,7 +268,7 @@ tpm_attach(device_t dev)
/* In case PnP probe this may contain some initialization. */
tpm_tis12_probe(sc->sc_bt, sc->sc_bh);
if (tpm_legacy_probe(sc->sc_bt, sc->sc_bh)) {
sc->sc_init = tpm_legacy_init;
sc->sc_start = tpm_legacy_start;
@ -331,7 +329,6 @@ tpm_detach(device_t dev)
return 0;
}
#else
/*
* OpenBSD specific code for probing and attaching TPM to device tree.

View File

@ -177,7 +177,6 @@ tpm20_close(struct cdev *dev, int flag, int mode, struct thread *td)
return (0);
}
int
tpm20_ioctl(struct cdev *dev, u_long cmd, caddr_t data,
int flags, struct thread *td)
@ -234,7 +233,6 @@ tpm20_release(struct tpm_sc *sc)
destroy_dev(sc->sc_cdev);
}
int
tpm20_suspend(device_t dev)
{
@ -267,7 +265,6 @@ tpm20_harvest(void *arg)
0x00, TPM_HARVEST_SIZE /* number of bytes requested */
};
sc = arg;
sx_xlock(&sc->dev_lock);
while (sc->pending_data_length != 0)

View File

@ -95,7 +95,6 @@ __FBSDID("$FreeBSD$");
#define TPM_CDEV_NAME "tpm0"
#define TPM_CDEV_PERM_FLAG 0600
#define TPM2_START_METHOD_ACPI 2
#define TPM2_START_METHOD_TIS 6
#define TPM2_START_METHOD_CRB 7

View File

@ -44,8 +44,6 @@ __FBSDID("$FreeBSD$");
#include <contrib/dev/acpica/include/accommon.h>
#include <dev/acpica/acpivar.h>
char *tpm_ids[] = {"ATM1200", "BCM0102", "INTC0102", "SNO3504", "WEC1000",
"PNP0C31", NULL};
@ -53,7 +51,7 @@ static int
tpm_acpi_probe(device_t dev)
{
int rv;
rv = ACPI_ID_PROBE(device_get_parent(dev), dev, tpm_ids, NULL);
if (rv <= 0)
device_set_desc(dev, "Trusted Platform Module");

View File

@ -85,7 +85,6 @@ struct tpmcrb_sc {
size_t rsp_buf_size;
};
int tpmcrb_transmit(struct tpm_sc *sc, size_t size);
static int tpmcrb_acpi_probe(device_t dev);

View File

@ -331,7 +331,6 @@ tpmtis_write_bytes(struct tpm_sc *sc, size_t count, uint8_t *buf)
return (true);
}
static bool
tpmtis_request_locality(struct tpm_sc *sc, int locality)
{