adapter.h 439 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* $Id: adapter.h,v 1.4 2004/03/21 17:26:01 armin Exp $ */
  3. #ifndef __DIVA_USER_MODE_IDI_ADAPTER_H__
  4. #define __DIVA_USER_MODE_IDI_ADAPTER_H__
  5. #define DIVA_UM_IDI_ADAPTER_REMOVED 0x00000001
  6. typedef struct _diva_um_idi_adapter {
  7. struct list_head link;
  8. DESCRIPTOR d;
  9. int adapter_nr;
  10. struct list_head entity_q; /* entities linked to this adapter */
  11. dword status;
  12. } diva_um_idi_adapter_t;
  13. #endif