Changeset 87 for trunk/src/os2ahci/os2ahci.c
- Timestamp:
- Apr 29, 2011, 11:21:36 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/os2ahci/os2ahci.c
r86 r87 2 2 * os2ahci.c - main file for os2ahci driver 3 3 * 4 * Copyright (c) 2010 Christian Mueller. Parts copied from/inspired by the 5 * Linux AHCI driver; those parts are (c) Linux AHCI/ATA maintainers 4 * Copyright (c) 2011 thi.guten Software Development 5 * Copyright (c) 2011 Mensys B.V. 6 * 7 * Authors: Christian Mueller, Markus Thielen 8 * 9 * Parts copied from/inspired by the Linux AHCI driver; 10 * those parts are (c) Linux AHCI/ATA maintainers 6 11 * 7 12 * This program is free software; you can redistribute it and/or modify … … 108 113 static char init_msg[] = "OS2AHCI driver version %d.%02d\n"; 109 114 static char exit_msg[] = "OS2AHCI driver *not* installed\n"; 110 static char eval_msg[] = ANSI_CLR_RED ANSI_CLR_BRIGHT "Evaluation version "111 "- not licensed for production use.\n" ANSI_RESET;112 115 113 116 /* ----------------------------- start of code ----------------------------- */ … … 173 176 /* print initialization message */ 174 177 cprintf(init_msg, VERSION / 100, VERSION % 100); 175 cprintf(eval_msg);176 178 177 179 /* register driver with resource manager */ … … 366 368 case OS2AHCI_IOCTL_GET_DEVLIST: 367 369 return(ioctl_get_devlist(ioctl)); 368 370 369 371 case OS2AHCI_IOCTL_PASSTHROUGH: 370 372 return(ioctl_passthrough(ioctl)); … … 834 836 dt->ADDHandle = add_handle; 835 837 dt->TotalAdapters = ad_info_cnt + 1; 836 838 837 839 /* set start of adapter and device information tables */ 838 840 pos = (char _far *) (dt->pAdapter + dt->TotalAdapters);
Note:
See TracChangeset
for help on using the changeset viewer.