diff options
author | Scott Branden <scott.branden@broadcom.com> | 2021-01-20 18:58:23 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-25 18:44:44 +0100 |
commit | 111d746bb4767ad476f80fe49067e3df3d9a9375 (patch) | |
tree | fe7bc67bf156f6db9cc3c0eaedf4f8b3ca840276 /drivers/misc/bcm-vk/Makefile | |
parent | misc: bcm-vk: add get_card_info, peerlog_info, and proc_mon_info (diff) | |
download | linux-111d746bb4767ad476f80fe49067e3df3d9a9375.tar.xz linux-111d746bb4767ad476f80fe49067e3df3d9a9375.zip |
misc: bcm-vk: add VK messaging support
Add message support in order to be able to communicate
to VK card via message queues.
This info is used for debug purposes via collection of logs via direct
read of BAR space and by sysfs access (in a follow on commit).
Co-developed-by: Desmond Yan <desmond.yan@broadcom.com>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Desmond Yan <desmond.yan@broadcom.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
Link: https://lore.kernel.org/r/20210120175827.14820-10-scott.branden@broadcom.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/bcm-vk/Makefile')
-rw-r--r-- | drivers/misc/bcm-vk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/bcm-vk/Makefile b/drivers/misc/bcm-vk/Makefile index a2ae79858409..79b4e365c9e6 100644 --- a/drivers/misc/bcm-vk/Makefile +++ b/drivers/misc/bcm-vk/Makefile @@ -6,5 +6,6 @@ obj-$(CONFIG_BCM_VK) += bcm_vk.o bcm_vk-objs := \ bcm_vk_dev.o \ - bcm_vk_msg.o + bcm_vk_msg.o \ + bcm_vk_sg.o |