Skip to content

Commit

Permalink
MAEMO: added hardware alias to the hardware detection table
Browse files Browse the repository at this point in the history
  • Loading branch information
tsoliman committed Oct 12, 2011
1 parent 42ccfbf commit a1fe577
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions backends/platform/maemo/maemo-common.h
Expand Up @@ -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}
};


Expand Down

0 comments on commit a1fe577

Please sign in to comment.