aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/ipc_devices.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2012-07-04 22:44:27 +0200
committerPaul Kocialkowski <contact@paulk.fr>2012-07-04 22:44:27 +0200
commit0b6def0105a1c11eeb728f289045412bddfd2bad (patch)
tree65a227e74ca47db4a668b7ddbd864212bd5b86bd /samsung-ipc/ipc_devices.c
parent55017a826f5bd902d27e566610c46f8ada45e5d8 (diff)
downloadexternal_libsamsung-ipc-0b6def0105a1c11eeb728f289045412bddfd2bad.zip
external_libsamsung-ipc-0b6def0105a1c11eeb728f289045412bddfd2bad.tar.gz
external_libsamsung-ipc-0b6def0105a1c11eeb728f289045412bddfd2bad.tar.bz2
Ordered devices by historical support order
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/ipc_devices.c')
-rw-r--r--samsung-ipc/ipc_devices.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/samsung-ipc/ipc_devices.c b/samsung-ipc/ipc_devices.c
index e1c12aa..cb76461 100644
--- a/samsung-ipc/ipc_devices.c
+++ b/samsung-ipc/ipc_devices.c
@@ -23,30 +23,6 @@
#include "ipc_devices.h"
struct ipc_device_desc ipc_devices[] = {
- {
- .name = "galaxys2",
- .board_name = "i9100",
- .handlers = &xmm6260_default_handlers,
- .fmt_ops = &xmm6260_i9100_fmt_ops,
- .rfs_ops = &xmm6260_rfs_ops,
- .fs_ops = NULL,
- },
- {
- .name = "galaxys2",
- .board_name = "smdk4210",
- .handlers = &xmm6260_default_handlers,
- .fmt_ops = &xmm6260_i9100_fmt_ops,
- .rfs_ops = &xmm6260_rfs_ops,
- .fs_ops = NULL,
- },
- {
- .name = "maguro",
- .board_name = "tuna",
- .handlers = &xmm6260_default_handlers,
- .fmt_ops = &xmm6260_i9250_fmt_ops,
- .rfs_ops = &xmm6260_rfs_ops,
- .fs_ops = &xmm6260_i9250_fs_ops,
- },
{
.name = "crespo",
.board_name = "herring",
@@ -70,6 +46,30 @@ struct ipc_device_desc ipc_devices[] = {
.fmt_ops = &aries_fmt_ops,
.rfs_ops = &aries_rfs_ops,
.fs_ops = NULL,
+ },
+ {
+ .name = "galaxys2",
+ .board_name = "i9100",
+ .handlers = &xmm6260_default_handlers,
+ .fmt_ops = &xmm6260_i9100_fmt_ops,
+ .rfs_ops = &xmm6260_rfs_ops,
+ .fs_ops = NULL,
+ },
+ {
+ .name = "galaxys2",
+ .board_name = "smdk4210",
+ .handlers = &xmm6260_default_handlers,
+ .fmt_ops = &xmm6260_i9100_fmt_ops,
+ .rfs_ops = &xmm6260_rfs_ops,
+ .fs_ops = NULL,
+ },
+ {
+ .name = "maguro",
+ .board_name = "tuna",
+ .handlers = &xmm6260_default_handlers,
+ .fmt_ops = &xmm6260_i9250_fmt_ops,
+ .rfs_ops = &xmm6260_rfs_ops,
+ .fs_ops = &xmm6260_i9250_fs_ops,
}
};