%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-112-generic/build/arch/mips/include/asm/mach-bcm63xx/ |
Upload File : |
#ifndef BCM63XX_NVRAM_H #define BCM63XX_NVRAM_H #include <linux/types.h> /** * bcm63xx_nvram_init() - initializes nvram * @nvram: address of the nvram data * * Initialized the local nvram copy from the target address and checks * its checksum. */ void bcm63xx_nvram_init(void *nvram); /** * bcm63xx_nvram_get_name() - returns the board name according to nvram * * Returns the board name field from nvram. Note that it might not be * null terminated if it is exactly 16 bytes long. */ u8 *bcm63xx_nvram_get_name(void); /** * bcm63xx_nvram_get_mac_address() - register & return a new mac address * @mac: pointer to array for allocated mac * * Registers and returns a mac address from the allocated macs from nvram. * * Returns 0 on success. */ int bcm63xx_nvram_get_mac_address(u8 *mac); int bcm63xx_nvram_get_psi_size(void); #endif /* BCM63XX_NVRAM_H */