diff options
author | Samuel Holland <samuel@sholland.org> | 2018-01-24 19:41:19 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-04-23 13:37:19 +0200 |
commit | b616cf53aa7aaf7c7e09c851807ebf1ce566e297 (patch) | |
tree | 28b6f4c5ff8f8fce2a8679d5f7a916eeb353f107 /drivers/firmware/google/coreboot_table.h | |
parent | a43eb6b3402fdfce9b4c4fc26983a2c5d14720ff (diff) |
firmware: coreboot: Remove unused coreboot_table_find
Now that all users of the coreboot_table_find function have been updated
to hang off the coreboot table bus instead, remove it.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firmware/google/coreboot_table.h')
-rw-r--r-- | drivers/firmware/google/coreboot_table.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/firmware/google/coreboot_table.h b/drivers/firmware/google/coreboot_table.h index 88e6a1c06028..26a3f3f3ac9c 100644 --- a/drivers/firmware/google/coreboot_table.h +++ b/drivers/firmware/google/coreboot_table.h @@ -69,9 +69,6 @@ int coreboot_driver_register(struct coreboot_driver *driver); /* Unregister a driver that uses the data from a coreboot table. */ void coreboot_driver_unregister(struct coreboot_driver *driver); -/* Retrieve coreboot table entry with tag *tag* and copy it to data */ -int coreboot_table_find(int tag, void *data, size_t data_size); - /* Initialize coreboot table module given a pointer to iomem */ int coreboot_table_init(struct device *dev, void __iomem *ptr); |