diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-01 10:48:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-01 10:48:43 +0200 |
commit | 91b6cb7216cd8bad027bc9ef88e2834786c8eeaf (patch) | |
tree | 3ef306b7954ed7cbf9df9693e0af65cc8b265b21 /drivers/staging/kpc2000 | |
parent | adc7af464ceba1962c2eb875a97f4d3bd82fbc5f (diff) | |
download | blackbird-op-linux-91b6cb7216cd8bad027bc9ef88e2834786c8eeaf.tar.gz blackbird-op-linux-91b6cb7216cd8bad027bc9ef88e2834786c8eeaf.zip |
staging: kpc2000: fix up build problems with readq()
The 0-day system found a bunch of warnings for when readq() is not
defined on the platform, so fix this by including the
linux/io-64-nonatomic-lo-hi.h file which will fix up these issues.
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/kpc2000')
-rw-r--r-- | drivers/staging/kpc2000/kpc2000/cell_probe.c | 1 | ||||
-rw-r--r-- | drivers/staging/kpc2000/kpc2000/core.c | 1 | ||||
-rw-r--r-- | drivers/staging/kpc2000/kpc2000/fileops.c | 1 | ||||
-rw-r--r-- | drivers/staging/kpc2000/kpc_i2c/i2c_driver.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/drivers/staging/kpc2000/kpc2000/cell_probe.c b/drivers/staging/kpc2000/kpc2000/cell_probe.c index 13f544f3c0b9..e0dba91e7fa8 100644 --- a/drivers/staging/kpc2000/kpc2000/cell_probe.c +++ b/drivers/staging/kpc2000/kpc2000/cell_probe.c @@ -6,6 +6,7 @@ #include <linux/slab.h> #include <asm/io.h> #include <linux/io.h> +#include <linux/io-64-nonatomic-lo-hi.h> #include <linux/mfd/core.h> #include <linux/platform_device.h> #include <linux/ioport.h> diff --git a/drivers/staging/kpc2000/kpc2000/core.c b/drivers/staging/kpc2000/kpc2000/core.c index 35b87cdc4fb0..40390cdd3c8d 100644 --- a/drivers/staging/kpc2000/kpc2000/core.c +++ b/drivers/staging/kpc2000/kpc2000/core.c @@ -10,6 +10,7 @@ #include <linux/mfd/core.h> #include <linux/platform_device.h> #include <linux/ioport.h> +#include <linux/io-64-nonatomic-lo-hi.h> #include <linux/interrupt.h> #include <linux/workqueue.h> #include <linux/device.h> diff --git a/drivers/staging/kpc2000/kpc2000/fileops.c b/drivers/staging/kpc2000/kpc2000/fileops.c index a6beca8dbac5..b3b0b763fa1e 100644 --- a/drivers/staging/kpc2000/kpc2000/fileops.c +++ b/drivers/staging/kpc2000/kpc2000/fileops.c @@ -10,6 +10,7 @@ #include <linux/uaccess.h> /* copy_*_user */ #include <linux/rwsem.h> #include <linux/idr.h> +#include <linux/io-64-nonatomic-lo-hi.h> #include <linux/device.h> #include <linux/sched.h> #include "pcie.h" diff --git a/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c b/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c index 1fc30dc687f9..0fb068b2408d 100644 --- a/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c +++ b/drivers/staging/kpc2000/kpc_i2c/i2c_driver.c @@ -14,6 +14,7 @@ #include <linux/module.h> #include <linux/types.h> #include <asm/io.h> +#include <linux/io-64-nonatomic-lo-hi.h> #include <linux/export.h> #include <linux/slab.h> #include <linux/platform_device.h> |