Changes in / [f480d7e:a1b7e80] in mainline
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/isa/isa.c
rf480d7e ra1b7e80 96 96 97 97 static int isa_add_device(ddf_dev_t *dev); 98 static int isa_fun_online(ddf_fun_t *fun);99 static int isa_fun_offline(ddf_fun_t *fun);100 98 101 99 /** The isa device driver's standard operations */ 102 100 static driver_ops_t isa_ops = { 103 .add_device = &isa_add_device, 104 .fun_online = &isa_fun_online, 105 .fun_offline = &isa_fun_offline 101 .add_device = &isa_add_device 106 102 }; 107 103 … … 499 495 } 500 496 501 static int isa_fun_online(ddf_fun_t *fun)502 {503 ddf_msg(LVL_DEBUG, "isa_fun_online()");504 return ddf_fun_online(fun);505 }506 507 static int isa_fun_offline(ddf_fun_t *fun)508 {509 ddf_msg(LVL_DEBUG, "isa_fun_offline()");510 return ddf_fun_offline(fun);511 }512 513 514 497 static void isa_init() 515 498 { -
uspace/drv/char/ns8250/ns8250.c
rf480d7e ra1b7e80 111 111 /** The fibril mutex for synchronizing the access to the device. */ 112 112 fibril_mutex_t mutex; 113 /** True if device is removed. */114 bool removed;115 113 } ns8250_t; 116 114 … … 221 219 222 220 static int ns8250_add_device(ddf_dev_t *dev); 223 static int ns8250_dev_remove(ddf_dev_t *dev);224 221 225 222 /** The serial port device driver's standard operations. */ 226 223 static driver_ops_t ns8250_ops = { 227 .add_device = &ns8250_add_device, 228 .dev_remove = &ns8250_dev_remove 224 .add_device = &ns8250_add_device 229 225 }; 230 226 … … 616 612 } 617 613 618 /** Deinitialize the serial port device.619 *620 * @param ns Serial port device621 */622 static void ns8250_port_cleanup(ns8250_t *ns)623 {624 /* Disable FIFO */625 pio_write_8(ns->port + 2, 0x00);626 /* Disable DTR, RTS, OUT1, OUT2 (int. enable) */627 pio_write_8(ns->port + 4, 0x00);628 /* Disable all interrupts from the port */629 ns8250_port_interrupts_disable(ns->port);630 }631 632 614 /** Read the data from the serial port device and store them to the input 633 615 * buffer. … … 787 769 } 788 770 789 static int ns8250_dev_remove(ddf_dev_t *dev)790 {791 ns8250_t *ns = NS8250_FROM_DEV(dev);792 int rc;793 794 fibril_mutex_lock(&ns->mutex);795 if (ns->client_connected) {796 fibril_mutex_unlock(&ns->mutex);797 return EBUSY;798 }799 ns->removed = true;800 fibril_mutex_unlock(&ns->mutex);801 802 rc = ddf_fun_unbind(ns->fun);803 if (rc != EOK) {804 ddf_msg(LVL_ERROR, "Failed to unbind function.");805 return rc;806 }807 808 ddf_fun_destroy(ns->fun);809 810 ns8250_port_cleanup(ns);811 ns8250_unregister_interrupt_handler(ns);812 ns8250_dev_cleanup(ns);813 return EOK;814 }815 816 771 /** Open the device. 817 772 * … … 823 778 static int ns8250_open(ddf_fun_t *fun) 824 779 { 825 ns8250_t * ns = NS8250(fun);780 ns8250_t *data = (ns8250_t *) fun->dev->driver_data; 826 781 int res; 827 782 828 fibril_mutex_lock(& ns->mutex);829 if ( ns->client_connected) {783 fibril_mutex_lock(&data->mutex); 784 if (data->client_connected) { 830 785 res = ELIMIT; 831 } else if (ns->removed) {832 res = ENXIO;833 786 } else { 834 787 res = EOK; 835 ns->client_connected = true;836 } 837 fibril_mutex_unlock(& ns->mutex);788 data->client_connected = true; 789 } 790 fibril_mutex_unlock(&data->mutex); 838 791 839 792 return res; -
uspace/lib/c/include/errno.h
rf480d7e ra1b7e80 55 55 #define EIO (-265) 56 56 #define EMLINK (-266) 57 #define ENXIO (-267)58 57 59 58 /** Bad checksum. */ -
uspace/srv/devman/main.c
rf480d7e ra1b7e80 326 326 } 327 327 328 /* Verify that driver removed all functions */329 fibril_rwlock_read_lock(&device_tree.rwlock);330 if (!list_empty(&dev->functions)) {331 fibril_rwlock_read_unlock(&device_tree.rwlock);332 return EIO;333 }334 fibril_rwlock_read_unlock(&device_tree.rwlock);335 336 328 detach_driver(&device_tree, dev); 337 329
Note:
See TracChangeset
for help on using the changeset viewer.