/src/sys/arch/arm/marvell/ |
pci_machdep.c | 332 prop_array_t int2gpp; local in function:gtpci_gpp_intr_string 335 int2gpp = prop_dictionary_get(device_properties(sc->sc_dev), "int2gpp"); 336 gpp = prop_array_get(int2gpp, pin); 355 prop_array_t int2gpp; local in function:gtpci_gpp_intr_establish 359 int2gpp = prop_dictionary_get(device_properties(sc->sc_dev), "int2gpp"); 360 gpp = prop_array_get(int2gpp, int_pin);
|
/src/sys/dev/marvell/ |
gtpci.c | 121 prop_array_t int2gpp; local in function:gtpci_attach 203 int2gpp = prop_dictionary_get(dict, "int2gpp"); 204 if (int2gpp != NULL) { 205 if (prop_object_type(int2gpp) != PROP_TYPE_ARRAY) { 206 aprint_error_dev(self, "int2gpp not an array\n"); 212 intr < prop_array_count(int2gpp); 214 gpp = prop_array_get(int2gpp, intr); 217 "int2gpp[%d] not an number\n", intr);
|
/src/sys/arch/evbarm/marvell/ |
marvell_machdep.c | 544 prop_array_t int2gpp; local in function:marvell_device_register 598 int2gpp = 603 prop_array_add(int2gpp, gpp); 608 prop_array_add(int2gpp, gpp); 611 prop_dictionary_set(dict, "int2gpp", int2gpp);
|