blob: da4d5cd5a88f88a75ce729ae2c821a633bc9353e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* (C) Copyright 2012 Stephen Warren
*
* SPDX-License-Identifier: GPL-2.0
*/
#ifndef _BCM2835_SDHCI_H_
#define _BCM2835_SDHCI_H_
#define BCM2835_SDHCI_BASE 0x20300000
int bcm2835_sdhci_init(u32 regbase, u32 emmc_freq);
#endif
|