gallium/radeon: Fix r600_pci_ids.h include

The new location is pci_ids/r600_pci_ids.h

Fixes: 1299f5c50a ("gallium/radeon: import libdrm_radeon source code, drop the dependency")
Signed-off-by: Mike Lothian <mike@fireburn.co.uk>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32298>
This commit is contained in:
Mike Lothian 2024-11-22 09:16:45 +00:00 committed by Marge Bot
parent 41958cfc73
commit 3aa7497cc0

View file

@ -131,7 +131,7 @@ static int radeon_get_family(struct radeon_surface_manager *surf_man)
{
switch (surf_man->device_id) {
#define CHIPSET(pci_id, name, fam) case pci_id: surf_man->family = CHIP_##fam; break;
#include "r600_pci_ids.h"
#include "pci_ids/r600_pci_ids.h"
#undef CHIPSET
default:
return -EINVAL;