raw/ioat: fix include quotes
authorBruce Richardson <bruce.richardson@intel.com>
Tue, 23 Jul 2019 16:26:48 +0000 (17:26 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 23 Jul 2019 18:49:47 +0000 (20:49 +0200)
commite53efcb5481782d23dd84b0cf83708b121481e43
treecd0465a8f6eac2f746d8311133682b1a87eb29c6
parent78a6d7ed19353310fc83e75742e9e73ae17c1719
raw/ioat: fix include quotes

Some builds with clang report an error because '<>' rather than '""' were
used for including the ioat spec header file.

  Target: x86_64-native-bsdapp-clang
  error: 'rte_ioat_spec.h' file not found with <angled> include; use "quotes" instead
  #include <rte_ioat_spec.h>
           ^~~~~~~~~~~~~~~~~
           "rte_ioat_spec.h"
  1 error generated.

Since this file should always be in the same directory as the main header,
we can safely change the include line to fix this error.

Fixes: abff4333ec20 ("raw/ioat: create device on probe and destroy on release")

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/raw/ioat/rte_ioat_rawdev.h