Skip to content

Commit

Permalink
ARM: tegra: remove tegra_chip_uid()
Browse files Browse the repository at this point in the history
Following commit f5b38c5 "crypto: tegra - use kernel entropy instead
of ad-hoc", this function is no longer used. It's also only accurate
for Tegra20 and not later SoCs. So, remove it.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
nvswarren authored and herbertx committed Sep 23, 2013
1 parent 02e28cd commit ec795ad
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions arch/arm/mach-tegra/fuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,3 @@ void tegra_init_fuse(void)
tegra_sku_id, tegra_cpu_process_id,
tegra_core_process_id);
}

unsigned long long tegra_chip_uid(void)
{
unsigned long long lo, hi;

lo = tegra_fuse_readl(FUSE_UID_LOW);
hi = tegra_fuse_readl(FUSE_UID_HIGH);
return (hi << 32ull) | lo;
}
EXPORT_SYMBOL(tegra_chip_uid);

0 comments on commit ec795ad

Please sign in to comment.