add missing file

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22355 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Marcus Overhagen 2007-09-28 21:24:26 +00:00
parent 2ae9d56421
commit a79249de5b
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#ifndef _ATA_CMDS_H
#define _ATA_CMDS_H
#include <SupportDefs.h>
struct ata_res_identify_device
{
union {
uint16 words[256];
struct {
uint16 data1[10];
char serial_number[20];
uint16 data2[3];
char firmware_revision[8];
char model_number[40];
};
};
};
#endif