* grub-core/term/ieee1275/escc.c (GRUB_MOD_INIT): Fix order of channels.
Reported by: Aaro Koskinen <aaro.koskinen@iki.fi>
This commit is contained in:
parent
674ad4f6bc
commit
2024ade285
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/term/ieee1275/escc.c (GRUB_MOD_INIT): Fix order of channels.
|
||||||
|
|
||||||
|
Reported by: Aaro Koskinen <aaro.koskinen@iki.fi>
|
||||||
|
|
||||||
2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
|
2013-11-10 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* docs/grub-dev.texi: Replace bzr references with git ones.
|
* docs/grub-dev.texi: Replace bzr references with git ones.
|
||||||
|
|
|
@ -307,8 +307,8 @@ GRUB_MOD_INIT (escc)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
add_device (macio_addr[2] + escc_addr[0] + 32, 1);
|
add_device (macio_addr[2] + escc_addr[0] + 32, 0);
|
||||||
add_device (macio_addr[2] + escc_addr[0], 0);
|
add_device (macio_addr[2] + escc_addr[0], 1);
|
||||||
|
|
||||||
grub_free (macio);
|
grub_free (macio);
|
||||||
grub_free (escc);
|
grub_free (escc);
|
||||||
|
|
Loading…
Reference in a new issue