build: remove redundant config include
[dpdk.git] / drivers / net / hinic / base / hinic_compat.h
index fe26aad..b72e8cf 100644 (file)
@@ -18,7 +18,6 @@
 #include <rte_spinlock.h>
 #include <rte_cycles.h>
 #include <rte_log.h>
-#include <rte_config.h>
 
 typedef uint8_t   u8;
 typedef int8_t    s8;
@@ -113,7 +112,7 @@ extern int hinic_logtype;
 #define GFP_KERNEL             RTE_MEMZONE_IOVA_CONTIG
 #define HINIC_PAGE_SHIFT       12
 #define HINIC_PAGE_SIZE                RTE_PGSIZE_4K
-#define HINIC_MEM_ALLOC_ALIGNE_MIN     8
+#define HINIC_MEM_ALLOC_ALIGN_MIN      8
 
 #define HINIC_PAGE_SIZE_DPDK   6
 
@@ -168,7 +167,7 @@ void dma_pool_destroy(struct dma_pool *pool);
 void *dma_pool_alloc(struct pci_pool *pool, int flags, dma_addr_t *dma_addr);
 void dma_pool_free(struct pci_pool *pool, void *vaddr, dma_addr_t dma);
 
-#define kzalloc(size, flag) rte_zmalloc(NULL, size, HINIC_MEM_ALLOC_ALIGNE_MIN)
+#define kzalloc(size, flag) rte_zmalloc(NULL, size, HINIC_MEM_ALLOC_ALIGN_MIN)
 #define kzalloc_aligned(size, flag) rte_zmalloc(NULL, size, RTE_CACHE_LINE_SIZE)
 #define kfree(ptr)            rte_free(ptr)
 
@@ -221,38 +220,6 @@ static inline u16 ilog2(u32 n)
        return res;
 }
 
-/**
- * hinic_cpu_to_be32 - convert data to big endian 32 bit format
- * @data: the data to convert
- * @len: length of data to convert, must be Multiple of 4B
- */
-static inline void hinic_cpu_to_be32(void *data, u32 len)
-{
-       u32 i;
-       u32 *mem = (u32 *)data;
-
-       for (i = 0; i < (len >> 2); i++) {
-               *mem = cpu_to_be32(*mem);
-               mem++;
-       }
-}
-
-/**
- * hinic_be32_to_cpu - convert data from big endian 32 bit format
- * @data: the data to convert
- * @len: length of data to convert, must be Multiple of 4B
- */
-static inline void hinic_be32_to_cpu(void *data, u32 len)
-{
-       u32 i;
-       u32 *mem = (u32 *)data;
-
-       for (i = 0; i < (len >> 2); i++) {
-               *mem = be32_to_cpu(*mem);
-               mem++;
-       }
-}
-
 static inline int hinic_mutex_init(pthread_mutex_t *pthreadmutex,
                                        const pthread_mutexattr_t *mattr)
 {