Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 145752
b: refs/heads/master
c: b206525
h: refs/heads/master
v: v3
  • Loading branch information
Jaswinder Singh Rajput authored and Ingo Molnar committed Apr 15, 2009
1 parent 650f580 commit b7a5a75
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6265ff19ca08df0d96c859ae5e4dc2d9ad07070e
refs/heads/master: b206525ad1f653b7da35f5827be93770d28eae11
11 changes: 8 additions & 3 deletions trunk/arch/x86/include/asm/k8.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ extern void k8_flush_garts(void);
extern int k8_scan_nodes(unsigned long start, unsigned long end);

#ifdef CONFIG_K8_NB
#define node_to_k8_nb_misc(node) \
(node < num_k8_northbridges) ? k8_northbridges[node] : NULL
static inline struct pci_dev *node_to_k8_nb_misc(int node)
{
return (node < num_k8_northbridges) ? k8_northbridges[node] : NULL;
}
#else
#define node_to_k8_nb_misc(node) NULL
static inline struct pci_dev *node_to_k8_nb_misc(int node)
{
return NULL;
}
#endif


Expand Down

0 comments on commit b7a5a75

Please sign in to comment.