2010-01-26 01:11:04 +00:00
|
|
|
/* linux/arch/arm/mach-s3c64xx/setup-sdhci.c
|
2009-03-25 11:01:24 +00:00
|
|
|
*
|
|
|
|
* Copyright 2008 Simtec Electronics
|
|
|
|
* Copyright 2008 Simtec Electronics
|
|
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
|
|
* http://armlinux.simtec.co.uk/
|
|
|
|
*
|
2010-01-26 01:38:52 +00:00
|
|
|
* S3C6400/S3C6410 - Helper functions for settign up SDHCI device(s) (HSMMC)
|
2009-03-25 11:01:24 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
/* clock sources for the mmc bus clock, order as for the ctrl2[5..4] */
|
|
|
|
|
2010-01-26 01:38:52 +00:00
|
|
|
char *s3c64xx_hsmmc_clksrcs[4] = {
|
2009-03-25 11:01:24 +00:00
|
|
|
[0] = "hsmmc",
|
|
|
|
[1] = "hsmmc",
|
|
|
|
[2] = "mmc_bus",
|
tree-wide: fix assorted typos all over the place
That is "success", "unknown", "through", "performance", "[re|un]mapping"
, "access", "default", "reasonable", "[con]currently", "temperature"
, "channel", "[un]used", "application", "example","hierarchy", "therefore"
, "[over|under]flow", "contiguous", "threshold", "enough" and others.
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2009-11-14 15:09:05 +00:00
|
|
|
/* [3] = "48m", - note not successfully used yet */
|
2009-03-25 11:01:24 +00:00
|
|
|
};
|