Changeset 50664 in vbox for trunk/src/VBox/HostDrivers/VBoxNetAdp/solaris
- 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/VBoxNetAdp/solaris/VBoxNetAdp-solaris.c
r50633 r50664 72 72 static int VBoxNetAdpSolarisAttach(dev_info_t *pDip, ddi_attach_cmd_t enmCmd); 73 73 static int VBoxNetAdpSolarisDetach(dev_info_t *pDip, ddi_detach_cmd_t enmCmd); 74 static int VBoxNetAdpSolarisQuiesceNotNeeded(dev_info_t *pDip); 74 75 75 76 /** … … 164 165 (struct bus_ops *)0, 165 166 nodev, /* power */ 166 ddi_quiesce_not_needed167 VBoxNetAdpSolarisQuiesceNotNeeded 167 168 }; 168 169 … … 443 444 444 445 446 /** 447 * Quiesce not-needed entry point, as Solaris 10 doesn't have any 448 * ddi_quiesce_not_needed() function. 449 * 450 * @param pDip The module structure instance. 451 * 452 * @return corresponding solaris error code. 453 */ 454 static int VBoxNetAdpSolarisQuiesceNotNeeded(dev_info_t *pDip) 455 { 456 return DDI_SUCCESS; 457 } 458 459 445 460 static int vboxNetAdpSolarisGenerateMac(PRTMAC pMac) 446 461 {
Note:
See TracChangeset
for help on using the changeset viewer.