| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2009 Corey Tabaka | 2 * Copyright (c) 2009 Corey Tabaka |
| 3 * | 3 * |
| 4 * Permission is hereby granted, free of charge, to any person obtaining | 4 * Permission is hereby granted, free of charge, to any person obtaining |
| 5 * a copy of this software and associated documentation files | 5 * a copy of this software and associated documentation files |
| 6 * (the "Software"), to deal in the Software without restriction, | 6 * (the "Software"), to deal in the Software without restriction, |
| 7 * including without limitation the rights to use, copy, modify, merge, | 7 * including without limitation the rights to use, copy, modify, merge, |
| 8 * publish, distribute, sublicense, and/or sell copies of the Software, | 8 * publish, distribute, sublicense, and/or sell copies of the Software, |
| 9 * and to permit persons to whom the Software is furnished to do so, | 9 * and to permit persons to whom the Software is furnished to do so, |
| 10 * subject to the following conditions: | 10 * subject to the following conditions: |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 } | 243 } |
| 244 } else { | 244 } else { |
| 245 goto usage; | 245 goto usage; |
| 246 } | 246 } |
| 247 | 247 |
| 248 out: | 248 out: |
| 249 return 0; | 249 return 0; |
| 250 } | 250 } |
| 251 | 251 |
| 252 STATIC_COMMAND_START | 252 STATIC_COMMAND_START |
| 253 { "pci", "pci toolbox", &pci_cmd }, | 253 STATIC_COMMAND("pci", "pci toolbox", &pci_cmd) |
| 254 STATIC_COMMAND_END(pcitests); | 254 STATIC_COMMAND_END(pcitests); |
| 255 | 255 |
| 256 #endif | 256 #endif |
| 257 | 257 |
| 258 APP_START(pcitests) | 258 APP_START(pcitests) |
| 259 APP_END | 259 APP_END |
| 260 | 260 |
| OLD | NEW |