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:
Daniel Vetter
2014-03-22 22:23:04 +01:00
parent c03c6ceb29
commit 2d4656fb69
10 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -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
View File
@@ -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);