drm/amd/display: fix replay_mode kernel-doc warning
[linux-2.6-block.git] / drivers / rtc / rtc-isl12026.c
index 5abff5d348acdb6333e3bf1454da6292e2b0466b..2aabb9151d4c6c018d7101ec206d03897cff01d5 100644 (file)
@@ -11,7 +11,6 @@
 #include <linux/mutex.h>
 #include <linux/nvmem-provider.h>
 #include <linux/of.h>
-#include <linux/of_device.h>
 #include <linux/rtc.h>
 #include <linux/slab.h>
 
@@ -429,7 +428,7 @@ static void isl12026_force_power_modes(struct i2c_client *client)
        }
 }
 
-static int isl12026_probe_new(struct i2c_client *client)
+static int isl12026_probe(struct i2c_client *client)
 {
        struct isl12026 *priv;
        int ret;
@@ -490,7 +489,7 @@ static struct i2c_driver isl12026_driver = {
                .name   = "rtc-isl12026",
                .of_match_table = isl12026_dt_match,
        },
-       .probe          = isl12026_probe_new,
+       .probe          = isl12026_probe,
        .remove         = isl12026_remove,
 };