diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-12-05 11:03:36 +0100 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-01-04 12:11:18 +0000 |
commit | f9e47cc4c2ddefaaa91ddae25449803cdd5243b8 (patch) | |
tree | f7023399c4eb45a4f8dbcc47c42ecb7c7c78ab33 /src/arch/mips | |
parent | 4139c15276a62c32c8d976c41782073379d64585 (diff) | |
download | coreboot-f9e47cc4c2ddefaaa91ddae25449803cdd5243b8.tar.xz |
src: Get rid of device_t
Use of device_t is deprecated.
Change-Id: Ie05869901ac33d7089e21110f46c1241f7ee731f
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/30047
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/include/arch/pci_ops.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/arch/mips/include/arch/pci_ops.h b/src/arch/mips/include/arch/pci_ops.h index 5fef126f2f..f57befa31e 100644 --- a/src/arch/mips/include/arch/pci_ops.h +++ b/src/arch/mips/include/arch/pci_ops.h @@ -21,9 +21,6 @@ typedef u32 pci_devfn_t; #ifdef __SIMPLE_DEVICE__ -// FIXME: Use of device_t is deprecated -typedef pci_devfn_t device_t; - u8 pci_read_config8(pci_devfn_t dev, unsigned int where); u16 pci_read_config16(pci_devfn_t dev, unsigned int where); u32 pci_read_config32(pci_devfn_t dev, unsigned int where); |