Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 58b250da authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds
Browse files

remove mca_is_adapter_used()



Remove the no longer used mca_is_adapter_used().

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3202e181
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
@@ -281,24 +281,6 @@ void mca_set_adapter_name(int slot, char* name)
}
EXPORT_SYMBOL(mca_set_adapter_name);

/**
 *	mca_is_adapter_used - check if claimed by driver
 *	@slot:	slot to check
 *
 *	Returns 1 if the slot has been claimed by a driver
 */

int mca_is_adapter_used(int slot)
{
	struct mca_device *mca_dev = mca_find_device_by_slot(slot);

	if(!mca_dev)
		return 0;

	return mca_device_claimed(mca_dev);
}
EXPORT_SYMBOL(mca_is_adapter_used);

/**
 *	mca_mark_as_used - claim an MCA device
 *	@slot:	slot to claim
+0 −1
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@
extern int mca_find_adapter(int id, int start);
extern int mca_find_unused_adapter(int id, int start);

extern int mca_is_adapter_used(int slot);
extern int mca_mark_as_used(int slot);
extern void mca_mark_as_unused(int slot);