Author: dim Date: Mon Feb 17 20:45:39 2014 New Revision: 262132 URL: http://svnweb.freebsd.org/changeset/base/262132
Log: MFC r261907: In cxgbe, conditionalize the t4_pgprot_wc() function, since it is only used when DOT5 is defined. Reviewed by: np Modified: stable/10/sys/dev/cxgbe/iw_cxgbe/provider.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/dev/cxgbe/iw_cxgbe/provider.c ============================================================================== --- stable/10/sys/dev/cxgbe/iw_cxgbe/provider.c Mon Feb 17 20:37:15 2014 (r262131) +++ stable/10/sys/dev/cxgbe/iw_cxgbe/provider.c Mon Feb 17 20:45:39 2014 (r262132) @@ -113,10 +113,12 @@ static struct ib_ucontext *c4iw_alloc_uc return &context->ibucontext; } +#ifdef DOT5 static inline pgprot_t t4_pgprot_wc(pgprot_t prot) { return pgprot_writecombine(prot); } +#endif static int c4iw_mmap(struct ib_ucontext *context, struct vm_area_struct *vma) { _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"