c
#include <assert.h>

struct pci_dn *PCI_DN(dn) {
    assert(dn != NULL);
    return ((struct pci_dn *) (dn)->data);
}
