summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h
diff options
context:
space:
mode:
authorlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-20 22:55:14 +0000
committerlars <lars@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-07-20 22:55:14 +0000
commit3bbf9530b1a31f7d8b4d3e9b536af28098cf9ce7 (patch)
tree0f800e729b1d94d020e534eff39ec3ddeb29f710 /target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h
parentfae902def7e748797948a23f49be7f6e93c25058 (diff)
[s3c24xx] glamo-mci: Cleanup mmc clock rate control.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16936 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h')
-rw-r--r--target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h b/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h
deleted file mode 100644
index 52c3fe334..000000000
--- a/target/linux/s3c24xx/files-2.6.30/drivers/mfd/glamo/glamo-mci.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * linux/drivers/mmc/host/glamo-mmc.h - GLAMO MCI driver
- *
- * Copyright (C) 2007-2008 Openmoko, Inc, Andy Green <andy@openmoko.com>
- * based on S3C MMC driver -->
- * Copyright (C) 2004-2006 Thomas Kleffel, All Rights Reserved.
- *
- * 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/regulator/consumer.h>
-
-struct glamo_mci_host {
- struct platform_device *pdev;
- struct glamo_mmc_platform_data *pdata;
- struct mmc_host *mmc;
- struct resource *mmio_mem;
- struct resource *data_mem;
- void __iomem *mmio_base;
- u16 __iomem *data_base;
-
- int suspending;
-
- int power_mode_current;
- unsigned int vdd_current;
-
- unsigned long clk_rate;
- unsigned long clk_div;
- unsigned long real_rate;
-
- int force_slow_during_powerup;
-
- struct mmc_request *mrq;
- struct work_struct irq_work;
-
- spinlock_t lock;
-
- unsigned int request_counter;
-
- struct regulator *regulator;
-};