svn commit: r202600 - head/share/examples/kld/firmware/fwconsumer

Wojciech A. Koszek wkoszek at FreeBSD.org
Mon Jan 18 22:59:53 UTC 2010


Author: wkoszek
Date: Mon Jan 18 22:59:53 2010
New Revision: 202600
URL: http://svn.freebsd.org/changeset/base/202600

Log:
  Small fix for making this KLD to compile.

Modified:
  head/share/examples/kld/firmware/fwconsumer/fw_consumer.c

Modified: head/share/examples/kld/firmware/fwconsumer/fw_consumer.c
==============================================================================
--- head/share/examples/kld/firmware/fwconsumer/fw_consumer.c	Mon Jan 18 22:48:41 2010	(r202599)
+++ head/share/examples/kld/firmware/fwconsumer/fw_consumer.c	Mon Jan 18 22:59:53 2010	(r202600)
@@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/proc.h>
 #include <sys/module.h>
 
-static struct firmware *fp;
+static const struct firmware *fp;
 
 static int
 fw_consumer_modevent(module_t mod, int type, void *unused)


More information about the svn-src-all mailing list