Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rk3576 Downstream U-Boot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Frattaroli
Rk3576 Downstream U-Boot
Commits
d3b63577
Commit
d3b63577
authored
15 years ago
by
Jean-Christophe PLAGNIOL-VILLARD
Browse files
Options
Downloads
Patches
Plain Diff
s3c24x0: move i2c driver to drivers/i2c
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD
<
plagnioj@jcrosoft.com
>
parent
300f99f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/arm920t/s3c24x0/Makefile
+1
-1
1 addition, 1 deletion
cpu/arm920t/s3c24x0/Makefile
drivers/i2c/Makefile
+1
-0
1 addition, 0 deletions
drivers/i2c/Makefile
drivers/i2c/s3c24x0_i2c.c
+0
-5
0 additions, 5 deletions
drivers/i2c/s3c24x0_i2c.c
with
2 additions
and
6 deletions
cpu/arm920t/s3c24x0/Makefile
+
1
−
1
View file @
d3b63577
...
...
@@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk
LIB
=
$(
obj
)
lib
$(
SOC
)
.a
COBJS
=
i2c.o
interrupts.o speed.o usb.o usb_ohci.o nand.o
COBJS
=
interrupts.o speed.o usb.o usb_ohci.o nand.o
SRCS
:=
$(
SOBJS:.o
=
.S
)
$(
COBJS:.o
=
.c
)
OBJS
:=
$(
addprefix
$(
obj
)
,
$(
SOBJS
)
$(
COBJS
))
...
...
This diff is collapsed.
Click to expand it.
drivers/i2c/Makefile
+
1
−
0
View file @
d3b63577
...
...
@@ -32,6 +32,7 @@ COBJS-$(CONFIG_I2C_MXC) += mxc_i2c.o
COBJS-$(CONFIG_DRIVER_OMAP1510_I2C)
+=
omap1510_i2c.o
COBJS-$(CONFIG_DRIVER_OMAP24XX_I2C)
+=
omap24xx_i2c.o
COBJS-$(CONFIG_DRIVER_OMAP34XX_I2C)
+=
omap24xx_i2c.o
COBJS-$(CONFIG_DRIVER_S3C24X0_I2C)
+=
s3c24x0_i2c.o
COBJS-$(CONFIG_S3C44B0_I2C)
+=
s3c44b0_i2c.o
COBJS-$(CONFIG_SOFT_I2C)
+=
soft_i2c.o
COBJS-$(CONFIG_TSI108_I2C)
+=
tsi108_i2c.o
...
...
This diff is collapsed.
Click to expand it.
cpu/arm920t
/s3c24x0
/
i2c.c
→
drivers/i2c
/s3c24x0
_
i2c.c
+
0
−
5
View file @
d3b63577
...
...
@@ -27,9 +27,6 @@
*/
#include
<common.h>
#ifdef CONFIG_DRIVER_S3C24X0_I2C
#if defined(CONFIG_S3C2400)
#include
<s3c2400.h>
#elif defined(CONFIG_S3C2410)
...
...
@@ -443,5 +440,3 @@ int i2c_write (uchar chip, uint addr, int alen, uchar * buffer, int len)
len
)
!=
0
);
}
#endif
/* CONFIG_HARD_I2C */
#endif
/* CONFIG_DRIVER_S3C24X0_I2C */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment