aboutsummaryrefslogtreecommitdiff
path: root/hw/npu2.c
diff options
context:
space:
mode:
authorJordan Niethe <jniethe5@gmail.com>2019-08-09 14:12:19 +1000
committerOliver O'Halloran <oohall@gmail.com>2019-08-16 15:51:55 +1000
commitf68639c6fcdf9261290a4601eda1ae6a406ba95a (patch)
tree5badd225d6b18b5b3595e1181f1697e99c8b388b /hw/npu2.c
parentdf15dcfc8acc83591889fa3b33100734a6b6bdb7 (diff)
downloadskiboot-f68639c6fcdf9261290a4601eda1ae6a406ba95a.zip
skiboot-f68639c6fcdf9261290a4601eda1ae6a406ba95a.tar.gz
skiboot-f68639c6fcdf9261290a4601eda1ae6a406ba95a.tar.bz2
pci: Use a macro for accessing PCI BDF Device Number
Currently when the Device Number bits of a BDF are needed the bit operations to get it are free coded. There are many places where the Device Number is used, so make a macro to use instead of free coding it everytime. Signed-off-by: Jordan Niethe <jniethe5@gmail.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'hw/npu2.c')
-rw-r--r--hw/npu2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/npu2.c b/hw/npu2.c
index 29c998f..f561386 100644
--- a/hw/npu2.c
+++ b/hw/npu2.c
@@ -548,7 +548,7 @@ static void npu2_get_gpu_base(struct npu2_dev *ndev, uint64_t *addr, uint64_t *s
struct npu2 *p = ndev->npu;
int group;
- group = (ndev->bdfn >> 3) & 0x1f;
+ group = PCI_DEV(ndev->bdfn);
phys_map_get(ndev->npu->chip_id, p->gpu_map_type, group, addr, size);
}