Changes in uspace/drv/char/i8042/main.c [797ab95:c8ea6eca] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/i8042/main.c
r797ab95 rc8ea6eca 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda3 2 * Copyright (c) 2011 Jan Vesely 4 3 * All rights reserved. … … 136 135 } 137 136 138 /** Initialize a new ddf driver instance of i8042 driver139 *140 * @param[in] device DDF instance of the device to initialize.141 *142 * @return Error code.143 *144 */145 static errno_t i8042_dev_quiesce(ddf_dev_t *device)146 {147 i8042_t *i8042;148 149 ddf_msg(LVL_DEBUG, "i8042_dev_quiesce()");150 151 i8042 = (i8042_t *)ddf_dev_data_get(device);152 i8042_quiesce(i8042);153 return EOK;154 }155 156 137 /** DDF driver operations. */ 157 138 static driver_ops_t i8042_driver_ops = { 158 139 .dev_add = i8042_dev_add, 159 .dev_quiesce = i8042_dev_quiesce160 140 }; 161 141
Note:
See TracChangeset
for help on using the changeset viewer.