svn commit: r367721 - head/sys/dev/mmc/host

Emmanuel Vadot manu at FreeBSD.org
Mon Nov 16 11:53:37 UTC 2020


Author: manu
Date: Mon Nov 16 11:53:36 2020
New Revision: 367721
URL: https://svnweb.freebsd.org/changeset/base/367721

Log:
  dwmmc: dwmmc_switch_vccq is only used in MMCCAM kernel
  
  Silence the build for non MMCCAM kernel

Modified:
  head/sys/dev/mmc/host/dwmmc.c

Modified: head/sys/dev/mmc/host/dwmmc.c
==============================================================================
--- head/sys/dev/mmc/host/dwmmc.c	Mon Nov 16 11:38:51 2020	(r367720)
+++ head/sys/dev/mmc/host/dwmmc.c	Mon Nov 16 11:53:36 2020	(r367721)
@@ -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 whi
 	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)
 {


More information about the svn-src-all mailing list