diff options
author | Shannon Zhao <shannon.zhao@linaro.org> | 2016-03-30 17:27:22 +0100 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 20:01:34 -0600 |
commit | a76b3d37701e485318a71ff9de049982016d458f (patch) | |
tree | 89628068c0dbda3a1e67a16534ad1bbd9d8384e3 /hw/gpio/Makefile.objs | |
parent | 2b1f286fa40d5b495d0c345d1315d6bde87f3243 (diff) | |
download | hqemu-a76b3d37701e485318a71ff9de049982016d458f.zip hqemu-a76b3d37701e485318a71ff9de049982016d458f.tar.gz |
hw/gpio: Add the emulation of gpio_key
This will be used by ARM virt machine as a power button.
Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
Message-id: 1458221140-15232-2-git-send-email-zhaoshenglong@huawei.com
[PMM: Use hyphen rather than underscore in type names;
add a comment briefly describing what the device does]
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/gpio/Makefile.objs')
-rw-r--r-- | hw/gpio/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/gpio/Makefile.objs b/hw/gpio/Makefile.objs index 52233f7..a43c7cf 100644 --- a/hw/gpio/Makefile.objs +++ b/hw/gpio/Makefile.objs @@ -3,6 +3,7 @@ common-obj-$(CONFIG_PL061) += pl061.o common-obj-$(CONFIG_PUV3) += puv3_gpio.o common-obj-$(CONFIG_ZAURUS) += zaurus.o common-obj-$(CONFIG_E500) += mpc8xxx.o +common-obj-$(CONFIG_GPIO_KEY) += gpio_key.o obj-$(CONFIG_OMAP) += omap_gpio.o obj-$(CONFIG_IMX) += imx_gpio.o |