OSDN Git Service

intel: annotate the intel genx helpers as private
[android-x86/external-libdrm.git] / intel / intel_chipset.c
index d5c33cc..5aa4a2f 100644 (file)
@@ -44,7 +44,7 @@ static const struct pci_device {
        INTEL_SKL_IDS(9),
 };
 
-bool intel_is_genx(unsigned int devid, int gen)
+drm_private bool intel_is_genx(unsigned int devid, int gen)
 {
        const struct pci_device *p,
                  *pend = pciids + sizeof(pciids) / sizeof(pciids[0]);
@@ -66,7 +66,7 @@ bool intel_is_genx(unsigned int devid, int gen)
        return false;
 }
 
-bool intel_get_genx(unsigned int devid, int *gen)
+drm_private bool intel_get_genx(unsigned int devid, int *gen)
 {
        const struct pci_device *p,
                  *pend = pciids + sizeof(pciids) / sizeof(pciids[0]);