ena.h (32f63fa7f975ef4e285135285905c1df49082c39) | ena.h (9d0073e413df9ec0c84429d8c3c2916d5b618310) |
---|---|
1/*- 2 * BSD LICENSE 3 * | 1/*- 2 * BSD LICENSE 3 * |
4 * Copyright (c) 2015-2017 Amazon.com, Inc. or its affiliates. | 4 * Copyright (c) 2015-2019 Amazon.com, Inc. or its affiliates. |
5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. --- 21 unchanged lines hidden (view full) --- 34#ifndef ENA_H 35#define ENA_H 36 37#include <sys/types.h> 38 39#include "ena-com/ena_com.h" 40#include "ena-com/ena_eth_com.h" 41 | 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. --- 21 unchanged lines hidden (view full) --- 34#ifndef ENA_H 35#define ENA_H 36 37#include <sys/types.h> 38 39#include "ena-com/ena_com.h" 40#include "ena-com/ena_eth_com.h" 41 |
42#define DRV_MODULE_VER_MAJOR 0 43#define DRV_MODULE_VER_MINOR 8 44#define DRV_MODULE_VER_SUBMINOR 4 | 42#define DRV_MODULE_VER_MAJOR 2 43#define DRV_MODULE_VER_MINOR 0 44#define DRV_MODULE_VER_SUBMINOR 0 |
45 46#define DRV_MODULE_NAME "ena" 47 48#ifndef DRV_MODULE_VERSION 49#define DRV_MODULE_VERSION \ 50 __XSTRING(DRV_MODULE_VER_MAJOR) "." \ 51 __XSTRING(DRV_MODULE_VER_MINOR) "." \ 52 __XSTRING(DRV_MODULE_VER_SUBMINOR) --- 416 unchanged lines hidden --- | 45 46#define DRV_MODULE_NAME "ena" 47 48#ifndef DRV_MODULE_VERSION 49#define DRV_MODULE_VERSION \ 50 __XSTRING(DRV_MODULE_VER_MAJOR) "." \ 51 __XSTRING(DRV_MODULE_VER_MINOR) "." \ 52 __XSTRING(DRV_MODULE_VER_SUBMINOR) --- 416 unchanged lines hidden --- |