}
 EXPORT_SYMBOL_GPL(__media_device_register);
 
-int __must_check media_device_register_entity_notify(struct media_device *mdev,
+void media_device_register_entity_notify(struct media_device *mdev,
                                        struct media_entity_notify *nptr)
 {
        mutex_lock(&mdev->graph_mutex);
        list_add_tail(&nptr->list, &mdev->entity_notify);
        mutex_unlock(&mdev->graph_mutex);
-       return 0;
 }
 EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
 
 
        /* register entity_notify callback */
        dev->entity_notify.notify_data = (void *) dev;
        dev->entity_notify.notify = (void *) au0828_media_graph_notify;
-       ret = media_device_register_entity_notify(dev->media_dev,
+       media_device_register_entity_notify(dev->media_dev,
                                                  &dev->entity_notify);
-       if (ret) {
-               dev_err(&udev->dev,
-                       "Media Device register entity_notify Error: %d\n",
-                       ret);
-               return ret;
-       }
+
        /* set enable_source */
        mutex_lock(&dev->media_dev->graph_mutex);
        dev->media_dev->source_priv = (void *) dev;
 
  *    media_entity_notify callbacks are invoked.
  */
 
-int __must_check media_device_register_entity_notify(struct media_device *mdev,
+void media_device_register_entity_notify(struct media_device *mdev,
                                        struct media_entity_notify *nptr);
 
 /**
 static inline void media_device_unregister_entity(struct media_entity *entity)
 {
 }
-static inline int media_device_register_entity_notify(
+static inline void media_device_register_entity_notify(
                                        struct media_device *mdev,
                                        struct media_entity_notify *nptr)
 {
-       return 0;
 }
 static inline void media_device_unregister_entity_notify(
                                        struct media_device *mdev,