From a1fe57702ac394903df3bb9be331b87e28e38a73 Mon Sep 17 00:00:00 2001 From: Tarek Soliman Date: Tue, 11 Oct 2011 17:24:42 -0500 Subject: MAEMO: added hardware alias to the hardware detection table --- backends/platform/maemo/maemo-common.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'backends') diff --git a/backends/platform/maemo/maemo-common.h b/backends/platform/maemo/maemo-common.h index be256ad340..6da38d49b5 100644 --- a/backends/platform/maemo/maemo-common.h +++ b/backends/platform/maemo/maemo-common.h @@ -35,19 +35,16 @@ enum MaemoModelType { struct MaemoModel { const char *hwId; MaemoModelType modelType; + const char *hwAlias; bool hwKeyboard; }; static const MaemoModel maemoModels[] = { -// N800 - {"RX-34", kMaemoModelTypeN800, false}, -// N810 - {"RX-44", kMaemoModelTypeN810, true}, -// N810W - {"RX-48", kMaemoModelTypeN810, true}, -// N900 - {"RX-51", kMaemoModelTypeN900, true}, - {0, kMaemoModelTypeInvalid, true} + {"RX-34", kMaemoModelTypeN800, "N800", false}, + {"RX-44", kMaemoModelTypeN810, "N810", true}, + {"RX-48", kMaemoModelTypeN810, "N810W", true}, + {"RX-51", kMaemoModelTypeN900, "N900", true}, + {0, kMaemoModelTypeInvalid, 0, true} }; -- cgit v1.2.3