Commit 9e04d0e2 authored by Laurentiu Tudor's avatar Laurentiu Tudor Committed by Greg Kroah-Hartman

staging: fsl-mc/dpio: drop EXPORT_SYMBOL() for a few functions

These functions are only used within this driver so no need for
EXPORT_SYMBOL().
Signed-off-by: default avatarLaurentiu Tudor <laurentiu.tudor@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2b0ff43a
...@@ -156,7 +156,6 @@ struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc) ...@@ -156,7 +156,6 @@ struct dpaa2_io *dpaa2_io_create(const struct dpaa2_io_desc *desc)
return obj; return obj;
} }
EXPORT_SYMBOL(dpaa2_io_create);
/** /**
* dpaa2_io_down() - release the dpaa2_io object. * dpaa2_io_down() - release the dpaa2_io object.
...@@ -171,7 +170,6 @@ void dpaa2_io_down(struct dpaa2_io *d) ...@@ -171,7 +170,6 @@ void dpaa2_io_down(struct dpaa2_io *d)
{ {
kfree(d); kfree(d);
} }
EXPORT_SYMBOL(dpaa2_io_down);
#define DPAA_POLL_MAX 32 #define DPAA_POLL_MAX 32
...@@ -218,7 +216,6 @@ irqreturn_t dpaa2_io_irq(struct dpaa2_io *obj) ...@@ -218,7 +216,6 @@ irqreturn_t dpaa2_io_irq(struct dpaa2_io *obj)
qbman_swp_interrupt_set_inhibit(swp, 0); qbman_swp_interrupt_set_inhibit(swp, 0);
return IRQ_HANDLED; return IRQ_HANDLED;
} }
EXPORT_SYMBOL(dpaa2_io_irq);
/** /**
* dpaa2_io_service_register() - Prepare for servicing of FQDAN or CDAN * dpaa2_io_service_register() - Prepare for servicing of FQDAN or CDAN
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment