- Timestamp:
- 04/15/03 13:03:45 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 40544fd1
- Parents:
- 046506c0
- Location:
- c/src/libchip
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/ChangeLog
r046506c0 rc54764f9 1 2003-04-15 Joel Sherrill <joel@OARcorp.com> 2 3 PR 387/rtems_misc 4 * ide/ata.c: Removed warning and moved to use of simpler libc routines. 5 * ide/ata_internal.h: Added missing newline and end of file. 6 1 7 2003-03-27 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/libchip/ide/ata.c
r046506c0 rc54764f9 1186 1186 ata_devs[ata_devs_number].device = dev; 1187 1187 1188 snprintf(name, ATA_MAX_NAME_LENGTH, "/dev/hd%c", 1189 'a' + 2 * ctrl_minor + dev); 1188 /* The space leaves a hole for the character. */ 1189 strcpy(name, "/dev/hd "); 1190 name[7] = 'a' + 2 * ctrl_minor + dev; 1191 1190 1192 device = rtems_filesystem_make_dev_t( 1191 1193 major, … … 1315 1317 } 1316 1318 } 1319 -
c/src/libchip/ide/ata_internal.h
r046506c0 rc54764f9 326 326 #endif /* __ATA_INTERNAL_H__ */ 327 327 328
Note: See TracChangeset
for help on using the changeset viewer.