cdma-sms: Make const correct

This commit is contained in:
Denis Kenzior 2012-06-16 07:48:41 -05:00
parent ecdec0715b
commit 2f95fd52ee
1 changed files with 3 additions and 2 deletions

View File

@ -38,13 +38,14 @@ struct ofono_cdma_sms_driver {
int (*probe)(struct ofono_cdma_sms *cdma_sms, unsigned int vendor,
void *data);
void (*remove)(struct ofono_cdma_sms *cdma_sms);
void (*submit)(struct ofono_cdma_sms *cdma_sms, unsigned char *tpdu,
void (*submit)(struct ofono_cdma_sms *cdma_sms,
const unsigned char *tpdu,
int tpdu_len, ofono_cdma_sms_submit_cb_t cb,
void *data);
};
void ofono_cdma_sms_deliver_notify(struct ofono_cdma_sms *cdma_sms,
unsigned char *pdu, int tpdu_len);
const unsigned char *pdu, int tpdu_len);
int ofono_cdma_sms_driver_register(const struct ofono_cdma_sms_driver *d);
void ofono_cdma_sms_driver_unregister(const struct ofono_cdma_sms_driver *d);