Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / northbridge / intel / e7525 / memory_initialized.c
1 #include "e7525.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         return (drc & (1<<29));
9 }