| 466 | } |
| 467 | |
| 468 | static rt_err_t gicv2_enable_rmw_access(void *data) |
| 469 | { |
| 470 | if (rt_ofw_machine_is_compatible("renesas,emev2")) |
| 471 | { |
| 472 | needs_rmw_access = RT_TRUE; |
| 473 | return RT_EOK; |
| 474 | } |
| 475 | |
| 476 | return -RT_EINVAL; |
| 477 | } |
| 478 | |
| 479 | static const struct gic_quirk _gicv2_quirks[] = |
| 480 | { |
nothing calls this directly
no test coverage detected