From: Stefan Reinauer Date: Sun, 31 May 2026 02:55:27 +0000 (-0700) Subject: scsi: keep AIC DMA helpers static X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=8dc01ee6d8a185bb8ec6779d6bb5302ae68fb56d;p=francis%2Fwinuae.git 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. --- 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) {