Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263792
b: refs/heads/master
c: 98e2a5a
h: refs/heads/master
v: v3
  • Loading branch information
Dan Williams authored and James Bottomley committed Aug 24, 2011
1 parent 4adf075 commit 52bf8e3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 77cd72a53f6426f81b7f56a862402849ee903bda
refs/heads/master: 98e2a5a3a125608505783bdb95744997f76b3c30
11 changes: 10 additions & 1 deletion trunk/drivers/scsi/isci/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,14 @@
#include "task.h"
#include "probe_roms.h"

#define MAJ 1
#define MIN 0
#define BUILD 0
#define DRV_VERSION __stringify(MAJ) "." __stringify(MIN) "." \
__stringify(BUILD)

MODULE_VERSION(DRV_VERSION);

static struct scsi_transport_template *isci_transport_template;

static DEFINE_PCI_DEVICE_TABLE(isci_id_table) = {
Expand Down Expand Up @@ -540,7 +548,8 @@ static __init int isci_init(void)
{
int err;

pr_info("%s: Intel(R) C600 SAS Controller Driver\n", DRV_NAME);
pr_info("%s: Intel(R) C600 SAS Controller Driver - version %s\n",
DRV_NAME, DRV_VERSION);

isci_transport_template = sas_domain_attach_transport(&isci_transport_ops);
if (!isci_transport_template)
Expand Down

0 comments on commit 52bf8e3

Please sign in to comment.