From a2892bf4456ef2c57a03b48cf09476bedee140f1 Mon Sep 17 00:00:00 2001 From: Alexandre Belloni Date: Wed, 2 Mar 2016 11:25:42 +0100 Subject: rtc: pcf85063: remove useless DRV_VERSION Since the driver is mainlined there is no use for a separate version number. Signed-off-by: Alexandre Belloni --- drivers/rtc/rtc-pcf85063.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'drivers/rtc') diff --git a/drivers/rtc/rtc-pcf85063.c b/drivers/rtc/rtc-pcf85063.c index 4e940cc..550f675 100644 --- a/drivers/rtc/rtc-pcf85063.c +++ b/drivers/rtc/rtc-pcf85063.c @@ -16,8 +16,6 @@ #include #include -#define DRV_VERSION "0.0.1" - #define PCF85063_REG_CTRL1 0x00 /* status */ #define PCF85063_REG_CTRL1_STOP BIT(5) #define PCF85063_REG_CTRL2 0x01 @@ -182,8 +180,6 @@ static int pcf85063_probe(struct i2c_client *client, if (!pcf85063) return -ENOMEM; - dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); - i2c_set_clientdata(client, pcf85063); pcf85063->rtc = devm_rtc_device_register(&client->dev, @@ -221,4 +217,3 @@ module_i2c_driver(pcf85063_driver); MODULE_AUTHOR("Søren Andersen "); MODULE_DESCRIPTION("PCF85063 RTC driver"); MODULE_LICENSE("GPL"); -MODULE_VERSION(DRV_VERSION); -- cgit v1.1