Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / northbridge / intel / e7520 / memory_initialized.c
1 #include "e7520.h"
2 #define NB_DEV PCI_DEV(0, 0, 0)
3
4 static inline int memory_initialized(void)
5 {
6         uint32_t drc;
7         drc = pci_read_config32(NB_DEV, DRC);
8         //print_debug("memory_initialized: DRC: ");
9         //print_debug_hex32(drc);
10         //print_debug("\n");
11
12         return (drc & (1<<29));
13 }