summaryrefslogtreecommitdiff
path: root/drivers/usb/s3c64xx_usb.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-04-03 12:46:58 +0200
committerRemy Bohmer <linux@bohmer.net>2009-04-06 20:40:46 +0200
commit2731b9a86685190d26b1883f27afda5ac8e1a313 (patch)
tree83511c3f504e62eb3ac129f3332d2bcaf25d6e32 /drivers/usb/s3c64xx_usb.c
parent712ac6a1a6909a58d6549fb220cc921a7e9f9979 (diff)
downloadu-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.zip
u-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.tar.gz
u-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.tar.bz2
drivers/usb: regorganisation
move to linux usb driver organisation as following drivers/usb/gadget drivers/usb/host drivers/usb/musb Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'drivers/usb/s3c64xx_usb.c')
-rw-r--r--drivers/usb/s3c64xx_usb.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/drivers/usb/s3c64xx_usb.c b/drivers/usb/s3c64xx_usb.c
deleted file mode 100644
index 274a4ed..0000000
--- a/drivers/usb/s3c64xx_usb.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * URB OHCI HCD (Host Controller Driver) initialization for USB on the S3C64XX.
- *
- * Copyright (C) 2008,
- * Guennadi Liakhovetski, DENX Software Engineering <lg@denx.de>
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- *
- */
-
-#include <common.h>
-#include <s3c6400.h>
-
-int usb_cpu_init(void)
-{
- OTHERS_REG |= 0x10000;
- return 0;
-}
-
-int usb_cpu_stop(void)
-{
- OTHERS_REG &= ~0x10000;
- return 0;
-}
-
-void usb_cpu_init_fail(void)
-{
- OTHERS_REG &= ~0x10000;
-}