Current Path : /sys/amd64/compile/hs32/modules/usr/src/sys/modules/cxgbe/firmware/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //sys/amd64/compile/hs32/modules/usr/src/sys/modules/cxgbe/firmware/t4fw_cfg.c |
/* * Automatically generated by: * $FreeBSD: release/9.1.0/sys/tools/fw_stub.awk 220227 2011-03-31 21:33:33Z rstone $ */ #include <sys/param.h> #include <sys/errno.h> #include <sys/kernel.h> #include <sys/module.h> #include <sys/linker.h> #include <sys/firmware.h> #include <sys/systm.h> extern char _binary_t4fw_cfg_txt_start[], _binary_t4fw_cfg_txt_end[]; extern char _binary_t4fw_cfg_uwire_txt_start[], _binary_t4fw_cfg_uwire_txt_end[]; static int t4fw_cfg_fw_modevent(module_t mod, int type, void *unused) { const struct firmware *fp, *parent; int error; switch (type) { case MOD_LOAD: fp = firmware_register("t4fw_cfg", _binary_t4fw_cfg_txt_start , (size_t)(_binary_t4fw_cfg_txt_end - _binary_t4fw_cfg_txt_start), 1, NULL); if (fp == NULL) goto fail_0; parent = fp; fp = firmware_register("t4fw_cfg_uwire", _binary_t4fw_cfg_uwire_txt_start , (size_t)(_binary_t4fw_cfg_uwire_txt_end - _binary_t4fw_cfg_uwire_txt_start), 1, parent); if (fp == NULL) goto fail_1; return (0); fail_1: (void)firmware_unregister("t4fw_cfg"); fail_0: return (ENXIO); case MOD_UNLOAD: error = firmware_unregister("t4fw_cfg_uwire"); if (error) return (error); error = firmware_unregister("t4fw_cfg"); return (error); } return (EINVAL); } static moduledata_t t4fw_cfg_fw_mod = { "t4fw_cfg_fw", t4fw_cfg_fw_modevent, 0 }; DECLARE_MODULE(t4fw_cfg_fw, t4fw_cfg_fw_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST); MODULE_VERSION(t4fw_cfg_fw, 1); MODULE_DEPEND(t4fw_cfg_fw, firmware, 1, 1, 1);