| OLD | NEW |
| 1 /* | 1 /* |
| 2 * arch/arm/mach-tegra/fuse.c | 2 * arch/arm/mach-tegra/fuse.c |
| 3 * | 3 * |
| 4 * Copyright (C) 2010 Google, Inc. | 4 * Copyright (C) 2010 Google, Inc. |
| 5 * | 5 * |
| 6 * Author: | 6 * Author: |
| 7 * Colin Cross <ccross@android.com> | 7 * Colin Cross <ccross@android.com> |
| 8 * | 8 * |
| 9 * This software is licensed under the terms of the GNU General Public | 9 * This software is licensed under the terms of the GNU General Public |
| 10 * License version 2, as published by the Free Software Foundation, and | 10 * License version 2, as published by the Free Software Foundation, and |
| 11 * may be copied, distributed, and modified under those terms. | 11 * may be copied, distributed, and modified under those terms. |
| 12 * | 12 * |
| 13 * This program is distributed in the hope that it will be useful, | 13 * This program is distributed in the hope that it will be useful, |
| 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 * GNU General Public License for more details. | 16 * GNU General Public License for more details. |
| 17 * | 17 * |
| 18 */ | 18 */ |
| 19 | 19 |
| 20 #define SKU_ID_T20 8 |
| 21 #define SKU_ID_T25 24 |
| 22 |
| 20 unsigned long long tegra_chip_uid(void); | 23 unsigned long long tegra_chip_uid(void); |
| 21 int tegra_sku_id(void); | 24 int tegra_sku_id(void); |
| 22 int tegra_cpu_process_id(void); | 25 int tegra_cpu_process_id(void); |
| 23 int tegra_core_process_id(void); | 26 int tegra_core_process_id(void); |
| 24 void tegra_init_fuse(void); | 27 void tegra_init_fuse(void); |
| OLD | NEW |