Changeset 13573 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Oct 27, 2008 12:03:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r13530 r13573 65 65 * Defined Constants And Macros * 66 66 *******************************************************************************/ 67 #define _QUOTE2(x) #x 68 #define QUOTE(x) _QUOTE2(x) 67 /** @todo this quoting macros probably should be moved to a common place. 68 * The indirection is for expanding macros passed to the first macro. */ 69 #define VBOXSOLQUOTE2(x) #x 70 #define VBOXSOLQUOTE(x) VBOXSOLQUOTE2(x) 69 71 /** The module name. */ 70 72 #define DEVICE_NAME "vboxdrv" 71 73 /** The module description as seen in 'modinfo'. */ 72 #define DEVICE_DESC "VirtualBox Driver"74 #define DEVICE_DESC "VirtualBox HostDrv" 73 75 /** Maximum number of driver instances. */ 74 76 #define DEVICE_MAXINSTANCES 16 … … 141 143 { 142 144 &mod_driverops, /* extern from kernel */ 143 DEVICE_DESC " " VBOX_VERSION_STRING "r" QUOTE(VBOX_SVN_REV),145 DEVICE_DESC " " VBOX_VERSION_STRING "r" VBOXSOLQUOTE(VBOX_SVN_REV), 144 146 &g_VBoxDrvSolarisDevOps 145 147 };
Note:
See TracChangeset
for help on using the changeset viewer.