dwmmc: dwmmc_switch_vccq is only used in MMCCAM kernel

Silence the build for non MMCCAM kernel
This commit is contained in:
Emmanuel Vadot 2020-11-16 11:53:36 +00:00
parent d34f599cd2
commit f4e5e045e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367721

View file

@ -143,8 +143,8 @@ static int dma_stop(struct dwmmc_softc *);
static void pio_read(struct dwmmc_softc *, struct mmc_command *);
static void pio_write(struct dwmmc_softc *, struct mmc_command *);
static void dwmmc_handle_card_present(struct dwmmc_softc *sc, bool is_present);
static int dwmmc_switch_vccq(device_t, device_t);
#ifdef MMCCAM
static int dwmmc_switch_vccq(device_t, device_t);
static void dwmmc_cam_action(struct cam_sim *, union ccb *);
static void dwmmc_cam_poll(struct cam_sim *);
static int dwmmc_cam_settran_settings(struct dwmmc_softc *, union ccb *);
@ -1418,6 +1418,7 @@ dwmmc_write_ivar(device_t bus, device_t child, int which, uintptr_t value)
return (0);
}
#ifdef MMCCAM
/* Note: this function likely belongs to the specific driver impl */
static int
dwmmc_switch_vccq(device_t dev, device_t child)
@ -1426,7 +1427,6 @@ dwmmc_switch_vccq(device_t dev, device_t child)
return EINVAL;
}
#ifdef MMCCAM
static void
dwmmc_cam_handle_mmcio(struct cam_sim *sim, union ccb *ccb)
{