Unexport intel_chipsets
Only used by the core module code, so make it static. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
5ff749727d
commit
2b3f4ca33a
|
|
@ -234,7 +234,6 @@
|
|||
#define SUPPORTS_YTILING(pI810) (INTEL_INFO(intel)->gen >= 40)
|
||||
#define HAS_BLT(pI810) (INTEL_INFO(intel)->gen >= 60)
|
||||
|
||||
extern SymTabRec *intel_chipsets;
|
||||
struct intel_device_info {
|
||||
int gen;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ static const SymTabRec _intel_chipsets[] = {
|
|||
};
|
||||
#define NUM_CHIPSETS (sizeof(_intel_chipsets) / sizeof(_intel_chipsets[0]))
|
||||
|
||||
SymTabRec *intel_chipsets = (SymTabRec *) _intel_chipsets;
|
||||
static SymTabRec *intel_chipsets = (SymTabRec *) _intel_chipsets;
|
||||
|
||||
#define INTEL_DEVICE_MATCH(d,i) \
|
||||
{ 0x8086, (d), PCI_MATCH_ANY, PCI_MATCH_ANY, 0x3 << 16, 0xff << 16, (intptr_t)(i) }
|
||||
|
|
|
|||
Loading…
Reference in New Issue