~morphis/phablet-extras/ofono-sms-status-report

« back to all changes in this revision

Viewing changes to drivers/huaweimodem/audio-settings.c

  • Committer: Martin Pitt
  • Date: 2011-02-21 14:08:48 UTC
  • mfrom: (18.1.7 ofono)
  • Revision ID: martin@piware.de-20110221140848-9v2jbu09zvxib74l
* New upstream release.
* debian/control: explicitly Conflicts with modemmanager: having both
  installed / running at the same time causes issues causes issues with both
  claiming modem devices. (LP: #688472)
* debian/patches/02-dont-handle-stacktraces.patch: stop catching stacktraces
  and printing the information internally, so apport can catch and report
  the possible bugs. (LP: #691450)
* debian/ofono.postinst: on configure, notify the user that a reboot is
  required (so ofono can get started by upstart). (LP: #600501)
* debian/control: add new Build-Depends on libbluetooth-dev to build with
  bluetooth support.
* debian/rules: drop override_dh_strip, not needed for debug symbols with
  cdbs.
* debian/rules: pass --no-restart-on-upgrade so ofono isn't automatically
  restarted when upgrades.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
        struct audio_settings_data *asd;
91
91
 
92
92
        asd = g_try_new0(struct audio_settings_data, 1);
93
 
        if (!asd)
 
93
        if (asd == NULL)
94
94
                return -ENOMEM;
95
95
 
96
96
        asd->chat = g_at_chat_clone(chat);
119
119
        .remove         = huawei_audio_settings_remove,
120
120
};
121
121
 
122
 
void huawei_audio_settings_init()
 
122
void huawei_audio_settings_init(void)
123
123
{
124
124
        ofono_audio_settings_driver_register(&driver);
125
125
}
126
126
 
127
 
void huawei_audio_settings_exit()
 
127
void huawei_audio_settings_exit(void)
128
128
{
129
129
        ofono_audio_settings_driver_unregister(&driver);
130
130
}