From: falcovorbis <fal...@us...> - 2024-10-09 00:05:40
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via b2e9b3801754e805a345ae923bf290c4c847a04a (commit) from d8a5b8379f4e6652ad98f81ccc6d3248c2986cb5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit b2e9b3801754e805a345ae923bf290c4c847a04a Author: Andy Barajas <and...@gm...> Date: Tue Oct 8 17:05:21 2024 -0700 Fix unused parameter warning (#800) ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/hardware/maple/maple_irq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/arch/dreamcast/hardware/maple/maple_irq.c b/kernel/arch/dreamcast/hardware/maple/maple_irq.c index 9bddebd5..c5cf21fe 100644 --- a/kernel/arch/dreamcast/hardware/maple/maple_irq.c +++ b/kernel/arch/dreamcast/hardware/maple/maple_irq.c @@ -74,7 +74,7 @@ static void vbl_chk_next_subdev(maple_state_t *state, maple_frame_t *frm, int p) } } -static void vbl_dev_probed(maple_state_t *state, int p, int u) { +static void vbl_dev_probed(int p, int u) { maple_device_t *dev = maple_enum_dev(p, 0); if (dev) @@ -173,7 +173,7 @@ static void vbl_autodet_callback(maple_state_t *state, maple_frame_t *frm) { if(u == 0) vbl_chk_subdevs(state, p, resp->src_addr); else - vbl_dev_probed(state, p, u); + vbl_dev_probed(p, u); maple_frame_unlock(frm); hooks/post-receive -- A pseudo Operating System for the Dreamcast. |