cdma-sms: Make const correct
authorDenis Kenzior <denkenz@gmail.com>
Sat, 16 Jun 2012 12:48:41 +0000 (07:48 -0500)
committerDenis Kenzior <denkenz@gmail.com>
Sat, 16 Jun 2012 14:50:05 +0000 (09:50 -0500)
include/cdma-sms.h

index 7caa2c9..3b19f04 100644 (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);