diff options
author | Tomer Tayar <ttayar@habana.ai> | 2019-03-04 09:22:09 +0100 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2019-03-04 09:22:09 +0100 |
commit | 3110c60fdc7a5a7626b7cd401c4918751d7c19db (patch) | |
tree | 0deffa7ca35e80a972f0acb33598126650f2d5bf /drivers/misc/habanalabs/Makefile | |
parent | habanalabs: remove implicit include from header files (diff) | |
download | linux-3110c60fdc7a5a7626b7cd401c4918751d7c19db.tar.xz linux-3110c60fdc7a5a7626b7cd401c4918751d7c19db.zip |
habanalabs: Move device CPU code into common file
This patch moves the code that is responsible of the communication
vs. the F/W to a dedicated file. This will allow us to share the code
between different ASICs.
Signed-off-by: Tomer Tayar <ttayar@habana.ai>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Diffstat (limited to 'drivers/misc/habanalabs/Makefile')
-rw-r--r-- | drivers/misc/habanalabs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/habanalabs/Makefile b/drivers/misc/habanalabs/Makefile index c6592db59b25..598740d235f8 100644 --- a/drivers/misc/habanalabs/Makefile +++ b/drivers/misc/habanalabs/Makefile @@ -6,7 +6,7 @@ obj-m := habanalabs.o habanalabs-y := habanalabs_drv.o device.o context.o asid.o habanalabs_ioctl.o \ command_buffer.o hw_queue.o irq.o sysfs.o hwmon.o memory.o \ - command_submission.o mmu.o + command_submission.o mmu.o firmware_if.o habanalabs-$(CONFIG_DEBUG_FS) += debugfs.o |