Rename generic_at drivers to atmodem

Be more consistent with directory naming
This commit is contained in:
Denis Kenzior 2009-09-01 22:33:05 -05:00
parent 7ff85d9737
commit a613105f91
13 changed files with 24 additions and 24 deletions

View File

@ -222,7 +222,7 @@ static void at_call_barring_remove(struct ofono_call_barring *cb)
}
static struct ofono_call_barring_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_call_barring_probe,
.remove = at_call_barring_remove,
.set = at_call_barring_set,

View File

@ -278,7 +278,7 @@ static void at_ccfc_remove(struct ofono_call_forwarding *cf)
}
static struct ofono_call_forwarding_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_ccfc_probe,
.remove = at_ccfc_remove,
.registration = at_ccfc_registration,

View File

@ -384,7 +384,7 @@ static void at_caoc_remove(struct ofono_call_meter *cm)
}
static struct ofono_call_meter_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_caoc_probe,
.remove = at_caoc_remove,
.call_meter_query = at_caoc_query,

View File

@ -381,7 +381,7 @@ static void at_call_settings_remove(struct ofono_call_settings *cs)
}
static struct ofono_call_settings_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_call_settings_probe,
.remove = at_call_settings_remove,
.clip_query = at_clip_query,

View File

@ -205,7 +205,7 @@ static void at_devinfo_remove(struct ofono_devinfo *info)
}
static struct ofono_devinfo_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_devinfo_probe,
.remove = at_devinfo_remove,
.query_manufacturer = at_query_manufacturer,

View File

@ -661,7 +661,7 @@ static void at_netreg_remove(struct ofono_netreg *netreg)
}
static struct ofono_netreg_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_netreg_probe,
.remove = at_netreg_remove,
.registration_status = at_registration_status,

View File

@ -545,7 +545,7 @@ static void at_phonebook_remove(struct ofono_phonebook *pb)
}
static struct ofono_phonebook_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_phonebook_probe,
.remove = at_phonebook_remove,
.export_entries = at_export_entries

View File

@ -456,7 +456,7 @@ static void at_sim_remove(struct ofono_sim *sim)
}
static struct ofono_sim_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_sim_probe,
.remove = at_sim_remove,
.read_file_info = at_sim_read_info,

View File

@ -986,7 +986,7 @@ static void at_sms_remove(struct ofono_sms *sms)
}
static struct ofono_sms_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_sms_probe,
.remove = at_sms_remove,
.sca_query = at_csca_query,

View File

@ -127,7 +127,7 @@ static void at_ssn_remove(struct ofono_ssn *ssn)
}
static struct ofono_ssn_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_ssn_probe,
.remove = at_ssn_remove,
};

View File

@ -159,7 +159,7 @@ static void at_ussd_remove(struct ofono_ussd *ussd)
}
static struct ofono_ussd_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_ussd_probe,
.remove = at_ussd_remove,
.request = at_ussd_request,

View File

@ -1013,7 +1013,7 @@ static void at_voicecall_remove(struct ofono_voicecall *vc)
}
static struct ofono_voicecall_driver driver = {
.name = "generic_at",
.name = "atmodem",
.probe = at_voicecall_probe,
.remove = at_voicecall_remove,
.dial = at_dial,

View File

@ -507,18 +507,18 @@ static void generic_at_populate(struct ofono_modem *modem)
GAtChat *chat = d->chat;
struct ofono_message_waiting *mw;
ofono_devinfo_create(modem, 0, "generic_at", chat);
ofono_ussd_create(modem, 0, "generic_at", chat);
ofono_sim_create(modem, 0, "generic_at", chat);
ofono_call_forwarding_create(modem, 0, "generic_at", chat);
ofono_call_settings_create(modem, 0, "generic_at", chat);
ofono_netreg_create(modem, 0, "generic_at", chat);
ofono_voicecall_create(modem, 0, "generic_at", chat);
ofono_call_meter_create(modem, 0, "generic_at", chat);
ofono_call_barring_create(modem, 0, "generic_at", chat);
ofono_ssn_create(modem, 0, "generic_at", chat);
ofono_sms_create(modem, 0, "generic_at", chat);
ofono_phonebook_create(modem, 0, "generic_at", chat);
ofono_devinfo_create(modem, 0, "atmodem", chat);
ofono_ussd_create(modem, 0, "atmodem", chat);
ofono_sim_create(modem, 0, "atmodem", chat);
ofono_call_forwarding_create(modem, 0, "atmodem", chat);
ofono_call_settings_create(modem, 0, "atmodem", chat);
ofono_netreg_create(modem, 0, "atmodem", chat);
ofono_voicecall_create(modem, 0, "atmodem", chat);
ofono_call_meter_create(modem, 0, "atmodem", chat);
ofono_call_barring_create(modem, 0, "atmodem", chat);
ofono_ssn_create(modem, 0, "atmodem", chat);
ofono_sms_create(modem, 0, "atmodem", chat);
ofono_phonebook_create(modem, 0, "atmodem", chat);
mw = ofono_message_waiting_create(modem);
if (mw)