summaryrefslogtreecommitdiffstats
path: root/target/linux/ps3/patches-2.6.25
diff options
context:
space:
mode:
authorgeoff <geoff@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-12 19:22:58 +0000
committergeoff <geoff@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-12 19:22:58 +0000
commit9fd59baa4e3db865f8e3ccc45f866eeeaa70f01b (patch)
treebb032c1152fd87a4c279ddf68775b05165d7af0f /target/linux/ps3/patches-2.6.25
parent0b09e4a4c79242ea71ec5036f111171bae3cf623 (diff)
Remove PS3 linux-2.6.25 kernel support
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14856 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ps3/patches-2.6.25')
-rw-r--r--target/linux/ps3/patches-2.6.25/100-ps3-system-bus-quiet-match-output.patch69
1 files changed, 0 insertions, 69 deletions
diff --git a/target/linux/ps3/patches-2.6.25/100-ps3-system-bus-quiet-match-output.patch b/target/linux/ps3/patches-2.6.25/100-ps3-system-bus-quiet-match-output.patch
deleted file mode 100644
index c2ae9f2cc..000000000
--- a/target/linux/ps3/patches-2.6.25/100-ps3-system-bus-quiet-match-output.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-Subject: PS3: Quiet system bus match output
-
-Reduce the verbosity of the output from ps3_system_bus_match().
-
-Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
----
- arch/powerpc/platforms/ps3/system-bus.c | 21 +++++++++++++--------
- 1 file changed, 13 insertions(+), 8 deletions(-)
-
---- a/arch/powerpc/platforms/ps3/system-bus.c
-+++ b/arch/powerpc/platforms/ps3/system-bus.c
-@@ -349,9 +349,14 @@
-
- result = dev->match_id == drv->match_id;
-
-- pr_info("%s:%d: dev=%u(%s), drv=%u(%s): %s\n", __func__, __LINE__,
-- dev->match_id, dev->core.bus_id, drv->match_id, drv->core.name,
-- (result ? "match" : "miss"));
-+ if (result)
-+ pr_info("%s:%d: dev=%u(%s), drv=%u(%s): match\n", __func__,
-+ __LINE__, dev->match_id, dev->core.bus_id,
-+ drv->match_id, drv->core.name);
-+ else
-+ pr_debug("%s:%d: dev=%u(%s), drv=%u(%s): miss\n", __func__,
-+ __LINE__, dev->match_id, dev->core.bus_id,
-+ drv->match_id, drv->core.name);
- return result;
- }
-
-@@ -362,7 +367,7 @@
- struct ps3_system_bus_driver *drv;
-
- BUG_ON(!dev);
-- pr_info(" -> %s:%d: %s\n", __func__, __LINE__, _dev->bus_id);
-+ pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, _dev->bus_id);
-
- drv = ps3_system_bus_dev_to_system_bus_drv(dev);
- BUG_ON(!drv);
-@@ -370,10 +375,10 @@
- if (drv->probe)
- result = drv->probe(dev);
- else
-- pr_info("%s:%d: %s no probe method\n", __func__, __LINE__,
-+ pr_debug("%s:%d: %s no probe method\n", __func__, __LINE__,
- dev->core.bus_id);
-
-- pr_info(" <- %s:%d: %s\n", __func__, __LINE__, dev->core.bus_id);
-+ pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev->core.bus_id);
- return result;
- }
-
-@@ -384,7 +389,7 @@
- struct ps3_system_bus_driver *drv;
-
- BUG_ON(!dev);
-- pr_info(" -> %s:%d: %s\n", __func__, __LINE__, _dev->bus_id);
-+ pr_debug(" -> %s:%d: %s\n", __func__, __LINE__, _dev->bus_id);
-
- drv = ps3_system_bus_dev_to_system_bus_drv(dev);
- BUG_ON(!drv);
-@@ -395,7 +400,7 @@
- dev_dbg(&dev->core, "%s:%d %s: no remove method\n",
- __func__, __LINE__, drv->core.name);
-
-- pr_info(" <- %s:%d: %s\n", __func__, __LINE__, dev->core.bus_id);
-+ pr_debug(" <- %s:%d: %s\n", __func__, __LINE__, dev->core.bus_id);
- return result;
- }
-