Changeset cccd60c3 in mainline for uspace/drv/platform
- Timestamp:
- 2017-10-10T06:51:02Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c46bfbc
- Parents:
- 2bdf92a5
- Location:
- uspace/drv/platform
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/amdm37x/main.c
r2bdf92a5 rcccd60c3 150 150 151 151 static hw_resource_list_t *amdm37x_get_resources(ddf_fun_t *fnode); 152 static bool amdm37x_enable_interrupt(ddf_fun_t *fun);152 static int amdm37x_enable_interrupt(ddf_fun_t *fun, int); 153 153 154 154 static hw_res_ops_t fun_hw_res_ops = { … … 265 265 } 266 266 267 static bool amdm37x_enable_interrupt(ddf_fun_t *fun)267 static int amdm37x_enable_interrupt(ddf_fun_t *fun, int irq) 268 268 { 269 269 //TODO: Implement -
uspace/drv/platform/icp/icp.c
r2bdf92a5 rcccd60c3 142 142 } 143 143 144 static bool icp_enable_interrupt(ddf_fun_t *fun)144 static int icp_enable_interrupt(ddf_fun_t *fun, int irq) 145 145 { 146 146 /* TODO */ -
uspace/drv/platform/mac/mac.c
r2bdf92a5 rcccd60c3 227 227 } 228 228 229 static bool mac_enable_interrupt(ddf_fun_t *fun)229 static int mac_enable_interrupt(ddf_fun_t *fun, int irq) 230 230 { 231 231 /* TODO */ -
uspace/drv/platform/malta/malta.c
r2bdf92a5 rcccd60c3 143 143 } 144 144 145 static bool malta_enable_interrupt(ddf_fun_t *fun)145 static int malta_enable_interrupt(ddf_fun_t *fun, int irq) 146 146 { 147 147 /* TODO */ -
uspace/drv/platform/msim/msim.c
r2bdf92a5 rcccd60c3 121 121 } 122 122 123 static bool msim_enable_interrupt(ddf_fun_t *fun)123 static int msim_enable_interrupt(ddf_fun_t *fun, int irq) 124 124 { 125 125 /* Nothing to do. */ -
uspace/drv/platform/pc/pc.c
r2bdf92a5 rcccd60c3 125 125 } 126 126 127 static bool pc_enable_interrupt(ddf_fun_t *fun)127 static int pc_enable_interrupt(ddf_fun_t *fun, int irq) 128 128 { 129 129 /* TODO */ -
uspace/drv/platform/sun4u/sun4u.c
r2bdf92a5 rcccd60c3 130 130 } 131 131 132 static bool sun4u_enable_interrupt(ddf_fun_t *fun)132 static int sun4u_enable_interrupt(ddf_fun_t *fun, int irq) 133 133 { 134 134 /* TODO */
Note:
See TracChangeset
for help on using the changeset viewer.