Changeset 50664 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt
- Timestamp:
- Mar 3, 2014 10:54:25 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92595
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/solaris/VBoxNetFlt-solaris.c
r50630 r50664 128 128 static int VBoxNetFltSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd); 129 129 static int VBoxNetFltSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd); 130 static int VBoxNetFltSolarisQuiesceNotNeeded(dev_info_t *pDip); 130 131 131 132 /** … … 232 233 (struct bus_ops *)0, 233 234 nodev, /* power */ 234 ddi_quiesce_not_needed235 VBoxNetFltSolarisQuiesceNotNeeded 235 236 }; 236 237 … … 691 692 return DDI_FAILURE; 692 693 } 694 } 695 696 697 /** 698 * Quiesce not-needed entry point, as Solaris 10 doesn't have any 699 * ddi_quiesce_not_needed() function. 700 * 701 * @param pDip The module structure instance. 702 * 703 * @return corresponding solaris error code. 704 */ 705 static int VBoxNetFltSolarisQuiesceNotNeeded(dev_info_t *pDip) 706 { 707 return DDI_SUCCESS; 693 708 } 694 709
Note:
See TracChangeset
for help on using the changeset viewer.