Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 250cce26 authored by Reinette Chatre's avatar Reinette Chatre Committed by John W. Linville
Browse files

iwlwifi: driver version track kernel version



The driver version number is a remnant from when there was an out-of-tree
iwlwifi driver. Now that the driver forms part of kernel source we do not
need a separate driver version. Instead, we now use the kernel version as
driver version. We maintain the previous tags used to indicate which
components the driver has been compiled with.

Signed-off-by: default avatarReinette Chatre <reinette.chatre@intel.com>
Acked-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 212fb575
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -63,6 +63,8 @@
#ifndef __iwl_core_h__
#ifndef __iwl_core_h__
#define __iwl_core_h__
#define __iwl_core_h__


#include <linux/utsrelease.h>

/************************
/************************
 * forward declarations *
 * forward declarations *
 ************************/
 ************************/
@@ -70,7 +72,7 @@ struct iwl_host_cmd;
struct iwl_cmd;
struct iwl_cmd;




#define IWLWIFI_VERSION "1.3.27k"
#define IWLWIFI_VERSION UTS_RELEASE "-k"
#define DRV_COPYRIGHT	"Copyright(c) 2003-2009 Intel Corporation"
#define DRV_COPYRIGHT	"Copyright(c) 2003-2009 Intel Corporation"
#define DRV_AUTHOR     "<ilw@linux.intel.com>"
#define DRV_AUTHOR     "<ilw@linux.intel.com>"


+1 −3
Original line number Original line Diff line number Diff line
@@ -76,11 +76,9 @@
#define VS
#define VS
#endif
#endif


#define IWL39_VERSION "1.2.26k" VD VS
#define DRV_VERSION  IWLWIFI_VERSION VD VS
#define DRV_COPYRIGHT	"Copyright(c) 2003-2009 Intel Corporation"
#define DRV_COPYRIGHT	"Copyright(c) 2003-2009 Intel Corporation"
#define DRV_AUTHOR     "<ilw@linux.intel.com>"
#define DRV_AUTHOR     "<ilw@linux.intel.com>"
#define DRV_VERSION     IWL39_VERSION



MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_VERSION(DRV_VERSION);
MODULE_VERSION(DRV_VERSION);