Changeset 195 for trunk/hal/x86_64/core/hal_init.c
- Timestamp:
- Jul 13, 2017, 12:28:37 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_init.c
r192 r195 151 151 } 152 152 153 static void init_bootinfo_ioc(boot_device_t *dev) 154 { 155 memset(dev, 0, sizeof(boot_device_t)); 156 157 dev->base = 0; 158 dev->type = (DEV_FUNC_IOC << 16) | IMPL_IOC_BDV; 159 dev->channels = 1; 160 } 161 153 162 static void init_bootinfo_pic(boot_device_t *dev) 154 163 { … … 203 212 info->io_cxy = 0; 204 213 205 info->ext_dev_nr = 2;214 info->ext_dev_nr = 3; 206 215 init_bootinfo_txt(&info->ext_dev[0]); 207 216 init_bootinfo_pic(&info->ext_dev[1]); 217 init_bootinfo_ioc(&info->ext_dev[2]); 208 218 209 219 info->cxy = 0;
Note: See TracChangeset
for help on using the changeset viewer.