[PATCH] drivers/scsi/dpt*: remove version.h dependencies

This patch removes version.h dependencies.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Adrian Bunk
2005-06-25 14:59:01 -07:00
committed by Linus Torvalds
parent a1ae13a4dd
commit a4cd16e2e8
2 changed files with 3 additions and 16 deletions

View File

@@ -34,7 +34,6 @@
#define ADDR32 (0)
#include <linux/version.h>
#include <linux/module.h>
MODULE_AUTHOR("Deanna Bonds, with _lots_ of help from Mark Salyzyn");
@@ -1811,9 +1810,9 @@ static int adpt_system_info(void __user *buffer)
memset(&si, 0, sizeof(si));
si.osType = OS_LINUX;
si.osMajorVersion = (u8) (LINUX_VERSION_CODE >> 16);
si.osMinorVersion = (u8) (LINUX_VERSION_CODE >> 8 & 0x0ff);
si.osRevision = (u8) (LINUX_VERSION_CODE & 0x0ff);
si.osMajorVersion = 0;
si.osMinorVersion = 0;
si.osRevision = 0;
si.busType = SI_PCI_BUS;
si.processorFamily = DPTI_sig.dsProcessorFamily;