Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309066
b: refs/heads/master
c: 0a4c531
h: refs/heads/master
v: v3
  • Loading branch information
Ralf Baechle committed May 15, 2012
1 parent 5bbf2c4 commit 83dbc63
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a48cf37ac8a77ddd2370be3c9af411c622ebc425
refs/heads/master: 0a4c531c2124cbb700484787327c516abbd76e70
15 changes: 15 additions & 0 deletions trunk/arch/mips/include/asm/prom.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
#define __ASM_PROM_H

#ifdef CONFIG_OF
#include <linux/bug.h>
#include <linux/io.h>
#include <linux/types.h>
#include <asm/bootinfo.h>

extern int early_init_dt_scan_memory_arch(unsigned long node,
Expand All @@ -21,6 +24,18 @@ extern int reserve_mem_mach(unsigned long addr, unsigned long size);
extern void free_mem_mach(unsigned long addr, unsigned long size);

extern void device_tree_init(void);

static inline unsigned long pci_address_to_pio(phys_addr_t address)
{
/*
* The ioport address can be directly used by inX() / outX()
*/
BUG_ON(address > IO_SPACE_LIMIT);

return (unsigned long) address;
}
#define pci_address_to_pio pci_address_to_pio

#else /* CONFIG_OF */
static inline void device_tree_init(void) { }
#endif /* CONFIG_OF */
Expand Down

0 comments on commit 83dbc63

Please sign in to comment.