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

Ilya Bakulin kibab at FreeBSD.org
Fri May 25 19:00:29 UTC 2018


Author: kibab
Date: Fri May 25 19:00:28 2018
New Revision: 334218
URL: https://svnweb.freebsd.org/changeset/base/334218

Log:
  Fix building GENERIC-MMCCAM on arm64
  
  Since GENERIC includes quite a few drivers now, all MMC drivers should have
  appropriate MMCCAM-related ifdefs and include opt_mmccam.h so that
  those ifdefs are actually processed correctly.
  
  Reviewed by:	manu
  Approved by:	imp (mentor)
  Differential Revision:	https://reviews.freebsd.org/D15569

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

Modified: head/sys/dev/mmc/host/dwmmc_rockchip.c
==============================================================================
--- head/sys/dev/mmc/host/dwmmc_rockchip.c	Fri May 25 18:57:41 2018	(r334217)
+++ head/sys/dev/mmc/host/dwmmc_rockchip.c	Fri May 25 19:00:28 2018	(r334218)
@@ -45,6 +45,8 @@ __FBSDID("$FreeBSD$");
 
 #include <dev/mmc/host/dwmmc_var.h>
 
+#include "opt_mmccam.h"
+
 enum RKTYPE {
 	RK2928 = 1,
 	RK3328,


More information about the svn-src-all mailing list