* [net, 6/6] net: korina: version bump
@ 2017-01-17 17:33 Roman Yeryomin
2017-01-17 18:55 ` Felix Fietkau
0 siblings, 1 reply; 5+ messages in thread
From: Roman Yeryomin @ 2017-01-17 17:33 UTC (permalink / raw)
To: netdev
Signed-off-by: Roman Yeryomin <roman@advem.lv>
---
drivers/net/ethernet/korina.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
index 83c994f..c8fed01 100644
--- a/drivers/net/ethernet/korina.c
+++ b/drivers/net/ethernet/korina.c
@@ -66,8 +66,8 @@
#include <asm/mach-rc32434/dma_v.h>
#define DRV_NAME "korina"
-#define DRV_VERSION "0.10"
-#define DRV_RELDATE "04Mar2008"
+#define DRV_VERSION "0.20"
+#define DRV_RELDATE "15Jan2017"
#define STATION_ADDRESS_HIGH(dev) (((dev)->dev_addr[0] << 8) | \
((dev)->dev_addr[1]))
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [net, 6/6] net: korina: version bump
2017-01-17 17:33 [net, 6/6] net: korina: version bump Roman Yeryomin
@ 2017-01-17 18:55 ` Felix Fietkau
2017-01-17 19:19 ` Roman Yeryomin
0 siblings, 1 reply; 5+ messages in thread
From: Felix Fietkau @ 2017-01-17 18:55 UTC (permalink / raw)
To: Roman Yeryomin, netdev
On 2017-01-17 18:33, Roman Yeryomin wrote:
> Signed-off-by: Roman Yeryomin <roman@advem.lv>
> ---
> drivers/net/ethernet/korina.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
> index 83c994f..c8fed01 100644
> --- a/drivers/net/ethernet/korina.c
> +++ b/drivers/net/ethernet/korina.c
> @@ -66,8 +66,8 @@
> #include <asm/mach-rc32434/dma_v.h>
>
> #define DRV_NAME "korina"
> -#define DRV_VERSION "0.10"
> -#define DRV_RELDATE "04Mar2008"
> +#define DRV_VERSION "0.20"
> +#define DRV_RELDATE "15Jan2017"
I think it would make more sense to remove this version instead of
bumping it. Individual driver versions are rather pointless, the kernel
version is more meaningful anyway.
- Felix
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net, 6/6] net: korina: version bump
2017-01-17 18:55 ` Felix Fietkau
@ 2017-01-17 19:19 ` Roman Yeryomin
2017-01-22 12:10 ` Roman Yeryomin
0 siblings, 1 reply; 5+ messages in thread
From: Roman Yeryomin @ 2017-01-17 19:19 UTC (permalink / raw)
To: Felix Fietkau; +Cc: netdev
On 17 January 2017 at 20:55, Felix Fietkau <nbd@nbd.name> wrote:
> On 2017-01-17 18:33, Roman Yeryomin wrote:
>> Signed-off-by: Roman Yeryomin <roman@advem.lv>
>> ---
>> drivers/net/ethernet/korina.c | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
>> index 83c994f..c8fed01 100644
>> --- a/drivers/net/ethernet/korina.c
>> +++ b/drivers/net/ethernet/korina.c
>> @@ -66,8 +66,8 @@
>> #include <asm/mach-rc32434/dma_v.h>
>>
>> #define DRV_NAME "korina"
>> -#define DRV_VERSION "0.10"
>> -#define DRV_RELDATE "04Mar2008"
>> +#define DRV_VERSION "0.20"
>> +#define DRV_RELDATE "15Jan2017"
> I think it would make more sense to remove this version instead of
> bumping it. Individual driver versions are rather pointless, the kernel
> version is more meaningful anyway.
OK, makes sense
Regards,
Roman
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net, 6/6] net: korina: version bump
2017-01-17 19:19 ` Roman Yeryomin
@ 2017-01-22 12:10 ` Roman Yeryomin
2017-01-22 13:21 ` Felix Fietkau
0 siblings, 1 reply; 5+ messages in thread
From: Roman Yeryomin @ 2017-01-22 12:10 UTC (permalink / raw)
To: Felix Fietkau; +Cc: netdev
On 17 January 2017 at 21:19, Roman Yeryomin <leroi.lists@gmail.com> wrote:
> On 17 January 2017 at 20:55, Felix Fietkau <nbd@nbd.name> wrote:
>> On 2017-01-17 18:33, Roman Yeryomin wrote:
>>> Signed-off-by: Roman Yeryomin <roman@advem.lv>
>>> ---
>>> drivers/net/ethernet/korina.c | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
>>> index 83c994f..c8fed01 100644
>>> --- a/drivers/net/ethernet/korina.c
>>> +++ b/drivers/net/ethernet/korina.c
>>> @@ -66,8 +66,8 @@
>>> #include <asm/mach-rc32434/dma_v.h>
>>>
>>> #define DRV_NAME "korina"
>>> -#define DRV_VERSION "0.10"
>>> -#define DRV_RELDATE "04Mar2008"
>>> +#define DRV_VERSION "0.20"
>>> +#define DRV_RELDATE "15Jan2017"
>> I think it would make more sense to remove this version instead of
>> bumping it. Individual driver versions are rather pointless, the kernel
>> version is more meaningful anyway.
>
> OK, makes sense
Actually, after thinking a bit more about this, not really...
How about ethtool, which uses driver name and version?
I see most ethernet drivers define some version. And it's pretty
useful, when using backports.
IMO, it should be kept and bumped.
Regards,
Roman
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [net, 6/6] net: korina: version bump
2017-01-22 12:10 ` Roman Yeryomin
@ 2017-01-22 13:21 ` Felix Fietkau
0 siblings, 0 replies; 5+ messages in thread
From: Felix Fietkau @ 2017-01-22 13:21 UTC (permalink / raw)
To: Roman Yeryomin; +Cc: netdev
On 2017-01-22 13:10, Roman Yeryomin wrote:
> On 17 January 2017 at 21:19, Roman Yeryomin <leroi.lists@gmail.com> wrote:
>> On 17 January 2017 at 20:55, Felix Fietkau <nbd@nbd.name> wrote:
>>> On 2017-01-17 18:33, Roman Yeryomin wrote:
>>>> Signed-off-by: Roman Yeryomin <roman@advem.lv>
>>>> ---
>>>> drivers/net/ethernet/korina.c | 4 ++--
>>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/drivers/net/ethernet/korina.c b/drivers/net/ethernet/korina.c
>>>> index 83c994f..c8fed01 100644
>>>> --- a/drivers/net/ethernet/korina.c
>>>> +++ b/drivers/net/ethernet/korina.c
>>>> @@ -66,8 +66,8 @@
>>>> #include <asm/mach-rc32434/dma_v.h>
>>>>
>>>> #define DRV_NAME "korina"
>>>> -#define DRV_VERSION "0.10"
>>>> -#define DRV_RELDATE "04Mar2008"
>>>> +#define DRV_VERSION "0.20"
>>>> +#define DRV_RELDATE "15Jan2017"
>>> I think it would make more sense to remove this version instead of
>>> bumping it. Individual driver versions are rather pointless, the kernel
>>> version is more meaningful anyway.
>>
>> OK, makes sense
>
> Actually, after thinking a bit more about this, not really...
> How about ethtool, which uses driver name and version?
> I see most ethernet drivers define some version. And it's pretty
> useful, when using backports.
> IMO, it should be kept and bumped.
I don't really care, I just wanted to point out that the exact kernel
version is a much more useful indicator, especially since not all patch
submitters do the useless version bump dance.
- Felix
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-01-22 13:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-17 17:33 [net, 6/6] net: korina: version bump Roman Yeryomin
2017-01-17 18:55 ` Felix Fietkau
2017-01-17 19:19 ` Roman Yeryomin
2017-01-22 12:10 ` Roman Yeryomin
2017-01-22 13:21 ` Felix Fietkau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox