mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
23 lines
919 B
Diff
23 lines
919 B
Diff
From: Steve Sakoman <steve@sakoman.com>
|
|
Date: Wed, 16 Jul 2008 19:38:43 +0000 (-0700)
|
|
Subject: omap3beagle: set data rate on i2c-1 to 400, since 2600 seems to be
|
|
X-Git-Url: http://www.sakoman.net/cgi-bin/gitweb.cgi?p=linux-omap-2.6.git;a=commitdiff_plain;h=12d6504334a830774ff1d42cee4b7296ac9fb7d2
|
|
|
|
omap3beagle: set data rate on i2c-1 to 400, since 2600 seems to be
|
|
flakey
|
|
---
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
|
|
index fdce787..938ad73 100644
|
|
--- a/arch/arm/mach-omap2/board-omap3beagle.c
|
|
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
|
|
@@ -39,7 +39,7 @@ static struct omap_uart_config omap3_beagle_uart_config __initdata = {
|
|
|
|
static int __init omap3_beagle_i2c_init(void)
|
|
{
|
|
- omap_register_i2c_bus(1, 2600, NULL, 0);
|
|
+ omap_register_i2c_bus(1, 400, NULL, 0);
|
|
omap_register_i2c_bus(2, 400, NULL, 0);
|
|
omap_register_i2c_bus(3, 400, NULL, 0);
|
|
return 0;
|