Placeholder for system RAM. */
| 763 | |
| 764 | /* Placeholder for system RAM. */ |
| 765 | static void |
| 766 | ram_identify(driver_t *driver, device_t parent) |
| 767 | { |
| 768 | |
| 769 | if (resource_disabled("ram", 0)) |
| 770 | return; |
| 771 | if (BUS_ADD_CHILD(parent, 0, "ram", 0) == NULL) |
| 772 | panic("ram_identify"); |
| 773 | } |
| 774 | |
| 775 | static int |
| 776 | ram_probe(device_t dev) |
nothing calls this directly
no test coverage detected