Changeset dc5647e in mainline for uspace/drv
- Timestamp:
- 2024-07-08T19:00:57Z (15 months ago)
- Branches:
- master
- Children:
- 878736e
- Parents:
- e3997a8
- Location:
- uspace/drv
- Files:
-
- 7 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/pci-ide/pci-ide.c
re3997a8 rdc5647e 186 186 bool irq_inited = false; 187 187 ata_params_t params; 188 void *buffer ;188 void *buffer = NULL; 189 189 190 190 ddf_msg(LVL_DEBUG, "pci_ide_channel_init()"); … … 294 294 return EOK; 295 295 error: 296 if (buffer != NULL) 297 dmamem_unmap_anonymous(buffer); 296 298 if (irq_inited) 297 299 pci_ide_fini_irq(chan); … … 315 317 } 316 318 319 dmamem_unmap_anonymous(chan->dma_buf); 317 320 pci_ide_fini_irq(chan); 318 321 pci_ide_fini_io(chan); -
uspace/drv/bus/isa/isa.dev
re3997a8 rdc5647e 51 51 io_range 70 2 52 52 53 fdc: 54 match 100 isa/fdc 55 io_range 0x3f0 8 56 irq 6 57 dma 2 58 53 59 ide1: 54 60 match 100 isa/ide -
uspace/drv/meson.build
re3997a8 rdc5647e 35 35 'block/ddisk', 36 36 'block/isa-ide', 37 'block/pc-floppy', 37 38 'block/pci-ide', 38 39 'block/usbmast',
Note:
See TracChangeset
for help on using the changeset viewer.