| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved. | 2 * Copyright (c) 2011 NVIDIA Corporation. All rights reserved. |
| 3 * | 3 * |
| 4 * See file CREDITS for list of people who contributed to this | 4 * See file CREDITS for list of people who contributed to this |
| 5 * project. | 5 * project. |
| 6 * | 6 * |
| 7 * This program is free software; you can redistribute it and/or | 7 * This program is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU General Public License as | 8 * modify it under the terms of the GNU General Public License as |
| 9 * published by the Free Software Foundation; either version 2 of | 9 * published by the Free Software Foundation; either version 2 of |
| 10 * the License, or (at your option) any later version. | 10 * the License, or (at your option) any later version. |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 parse_token token, | 82 parse_token token, |
| 83 u_int32_t value); | 83 u_int32_t value); |
| 84 | 84 |
| 85 int | 85 int |
| 86 set_spiflash_param(build_image_context *context, | 86 set_spiflash_param(build_image_context *context, |
| 87 u_int32_t index, | 87 u_int32_t index, |
| 88 parse_token token, | 88 parse_token token, |
| 89 u_int32_t value); | 89 u_int32_t value); |
| 90 | 90 |
| 91 int | 91 int |
| 92 set_sdram_param(build_image_context *context, |
| 93 u_int32_t index, |
| 94 parse_token token, |
| 95 u_int32_t value); |
| 96 |
| 97 int |
| 92 read_from_image(char *filename, | 98 read_from_image(char *filename, |
| 93 u_int32_t page_size, | 99 u_int32_t page_size, |
| 94 u_int8_t **Image, | 100 u_int8_t **Image, |
| 95 u_int32_t *storage_size, | 101 u_int32_t *storage_size, |
| 96 u_int32_t *actual_size, | 102 u_int32_t *actual_size, |
| 97 file_type f_type); | 103 file_type f_type); |
| 98 | 104 |
| 99 #endif /* #ifndef INCLUDED_SET_H */ | 105 #endif /* #ifndef INCLUDED_SET_H */ |
| OLD | NEW |