err = -ENODEV;
        else if (rtc->ops->set_time)
                err = rtc->ops->set_time(rtc->dev.parent, tm);
-       else if (rtc->ops->set_mmss64)
-               err = rtc->ops->set_mmss64(rtc->dev.parent,
-                                          rtc_tm_to_time64(tm));
-       else if (rtc->ops->set_mmss)
-               err = rtc->ops->set_mmss(rtc->dev.parent,
-                                        rtc_tm_to_time64(tm));
        else
                err = -EINVAL;
 
 
        if (!rtc)
                goto out_err;
 
-       if (!rtc->ops || (!rtc->ops->set_time && !rtc->ops->set_mmss64 &&
-                         !rtc->ops->set_mmss))
+       if (!rtc->ops || !rtc->ops->set_time)
                goto out_close;
 
        /* Compute the value of tv_nsec we require the caller to supply in
 
        rtc_time64_to_tm(to_set.tv_sec, &tm);
 
-       /* rtc_hctosys exclusively uses UTC, so we call set_time here, not
-        * set_mmss.
-        */
        err = rtc_set_time(rtc, &tm);
 
 out_close:
 
        int (*read_alarm)(struct device *, struct rtc_wkalrm *);
        int (*set_alarm)(struct device *, struct rtc_wkalrm *);
        int (*proc)(struct device *, struct seq_file *);
-       int (*set_mmss64)(struct device *, time64_t secs);
-       int (*set_mmss)(struct device *, unsigned long secs);
        int (*alarm_irq_enable)(struct device *, unsigned int enabled);
        int (*read_offset)(struct device *, long *offset);
        int (*set_offset)(struct device *, long offset);