From 8dc01ee6d8a185bb8ec6779d6bb5302ae68fb56d Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Sat, 30 May 2026 19:55:27 -0700 Subject: [PATCH] scsi: keep AIC DMA helpers static The AIC DMA helpers are only used in scsi.cpp. Keep the forward declarations static so they match the definitions and avoid exporting private symbols. --- scsi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scsi.cpp b/scsi.cpp index b1b63505..25d8d173 100644 --- a/scsi.cpp +++ b/scsi.cpp @@ -1466,8 +1466,8 @@ static void supra_do_dma(struct soft_scsi *ncr) } } -uae_u8 aic_bget_dma(struct soft_scsi *scsi, bool *phaseerr); -void aic_bput_dma(struct soft_scsi *scsi, uae_u8 v, bool *phaseerr); +static uae_u8 aic_bget_dma(struct soft_scsi *scsi, bool *phaseerr); +static void aic_bput_dma(struct soft_scsi *scsi, uae_u8 v, bool *phaseerr); static void hardframe_do_dma(struct soft_scsi *ncr) { -- 2.47.3