OpenCores
URL https://opencores.org/ocsvn/test_project/test_project/trunk

Subversion Repositories test_project

[/] [test_project/] [trunk/] [linux_sd_driver/] [lib/] [reciprocal_div.c] - Blame information for rev 62

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 62 marcus.erl
#include <asm/div64.h>
2
#include <linux/reciprocal_div.h>
3
 
4
u32 reciprocal_value(u32 k)
5
{
6
        u64 val = (1LL << 32) + (k - 1);
7
        do_div(val, k);
8
        return (u32)val;
9
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.