mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-19 04:13:01 +00:00
lib/intel_io: rename mmio setup functions
Makes their intent a bit clearer. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
+2
-2
@@ -33,8 +33,8 @@
|
||||
|
||||
/* register access helpers from intel_mmio.c */
|
||||
extern void *mmio;
|
||||
void intel_get_mmio(struct pci_device *pci_dev);
|
||||
void intel_map_file(char *);
|
||||
void intel_mmio_use_pci_bar(struct pci_device *pci_dev);
|
||||
void intel_mmio_use_dump_file(char *);
|
||||
|
||||
int intel_register_access_init(struct pci_device *pci_dev, int safe);
|
||||
void intel_register_access_fini(void);
|
||||
|
||||
+3
-3
@@ -58,7 +58,7 @@ static struct _mmio_data {
|
||||
} mmio_data;
|
||||
|
||||
void
|
||||
intel_map_file(char *file)
|
||||
intel_mmio_use_dump_file(char *file)
|
||||
{
|
||||
int fd;
|
||||
struct stat st;
|
||||
@@ -80,7 +80,7 @@ intel_map_file(char *file)
|
||||
}
|
||||
|
||||
void
|
||||
intel_get_mmio(struct pci_device *pci_dev)
|
||||
intel_mmio_use_pci_bar(struct pci_device *pci_dev)
|
||||
{
|
||||
uint32_t devid, gen;
|
||||
int mmio_bar, mmio_size;
|
||||
@@ -132,7 +132,7 @@ intel_register_access_init(struct pci_device *pci_dev, int safe)
|
||||
|
||||
/* after old API is deprecated, remove this */
|
||||
if (mmio == NULL)
|
||||
intel_get_mmio(pci_dev);
|
||||
intel_mmio_use_pci_bar(pci_dev);
|
||||
|
||||
assert(mmio != NULL);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user