OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of the flashrom project. | 2 * This file is part of the flashrom project. |
3 * | 3 * |
4 * Copyright (C) 2009 Peter Stuge <peter@stuge.se> | 4 * Copyright (C) 2009 Peter Stuge <peter@stuge.se> |
5 * Copyright (C) 2009 coresystems GmbH | 5 * Copyright (C) 2009 coresystems GmbH |
6 * Copyright (C) 2010 Carl-Daniel Hailfinger | 6 * Copyright (C) 2010 Carl-Daniel Hailfinger |
7 * Copyright (C) 2010 Rudolf Marek <r.marek@assembler.cz> | 7 * Copyright (C) 2010 Rudolf Marek <r.marek@assembler.cz> |
8 * | 8 * |
9 * This program is free software; you can redistribute it and/or modify | 9 * This program is free software; you can redistribute it and/or modify |
10 * it under the terms of the GNU General Public License as published by | 10 * it under the terms of the GNU General Public License as published by |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
513 } | 513 } |
514 | 514 |
515 void cleanup_cpu_msr(void) | 515 void cleanup_cpu_msr(void) |
516 { | 516 { |
517 // Nothing, yet. | 517 // Nothing, yet. |
518 } | 518 } |
519 #endif | 519 #endif |
520 #endif | 520 #endif |
521 #endif | 521 #endif |
522 #else | 522 #else |
523 /* Does MSR exist on non-x86 architectures? */ | 523 /* MSRs do not exist on non-x86 architectures. */ |
dhendrix
2011/03/25 04:34:43
You can remove this file from the patch set. We'll
Louis
2011/03/25 10:55:48
Done.
| |
524 #endif | 524 #endif |
OLD | NEW |