Date: Fri, 25 May 2018 19:00:28 +0000 (UTC) From: Ilya Bakulin <kibab@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r334218 - head/sys/dev/mmc/host Message-ID: <201805251900.w4PJ0S3m073359@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805251900.w4PJ0S3m073359>