| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // This program is free software: you can redistribute it and/or modify | 3 // This program is free software: you can redistribute it and/or modify |
| 4 // it under the terms of the GNU General Public License as published by | 4 // it under the terms of the GNU General Public License as published by |
| 5 // the Free Software Foundation, either version 3 of the License, or | 5 // the Free Software Foundation, either version 3 of the License, or |
| 6 // (at your option) any later version. | 6 // (at your option) any later version. |
| 7 // | 7 // |
| 8 // This program is distributed in the hope that it will be useful, | 8 // This program is distributed in the hope that it will be useful, |
| 9 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 // Trampoline to 32-bit entry point. Should never return. | 177 // Trampoline to 32-bit entry point. Should never return. |
| 178 trampoline(params->code32_start, params); | 178 trampoline(params->code32_start, params); |
| 179 | 179 |
| 180 fail: | 180 fail: |
| 181 | 181 |
| 182 // Bad Things happened. | 182 // Bad Things happened. |
| 183 port80w(0xdead); | 183 port80w(0xdead); |
| 184 | 184 |
| 185 return EFI_LOAD_ERROR; | 185 return EFI_LOAD_ERROR; |
| 186 } | 186 } |
| OLD | NEW |