i460_mux: make osmo_i460_subchan_count public

There may be situations where we must check if there are still I.460
subchannels active, so lets make the function osmo_i460_subchan_count
public

Change-Id: I0454ffe5809f21504c1e263a781c06596d452d4b
Related: OS#5198
diff --git a/src/isdn/i460_mux.c b/src/isdn/i460_mux.c
index 18a807d..9e9489a 100644
--- a/src/isdn/i460_mux.c
+++ b/src/isdn/i460_mux.c
@@ -23,8 +23,10 @@
 #include <osmocom/core/msgb.h>
 #include <osmocom/isdn/i460_mux.h>
 
-/* count the number of sub-channels in this I460 slot */
-static int osmo_i460_subchan_count(struct osmo_i460_timeslot *ts)
+/*! count the number of sub-channels in this I.460 slot.
+ *  \param[in] ts timeslot that holds the I.460 subchannels.
+ *  \return number of subchannels.  */
+int osmo_i460_subchan_count(struct osmo_i460_timeslot *ts)
 {
 	int i, num_used = 0;