Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45673
b: refs/heads/master
c: 7799308
h: refs/heads/master
i:
  45671: 289c56b
v: v3
  • Loading branch information
Artem Bityutskiy committed Nov 29, 2006
1 parent 5590b68 commit b0d20f6
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 29072b96078ffde36f03d51e6b5d0cff1ba8c7df
refs/heads/master: 7799308f34d3c3371a319559687c78c0f2506fcf
38 changes: 38 additions & 0 deletions trunk/drivers/mtd/mtdcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <linux/timer.h>
#include <linux/major.h>
#include <linux/fs.h>
#include <linux/err.h>
#include <linux/ioctl.h>
#include <linux/init.h>
#include <linux/mtd/compatmac.h>
Expand Down Expand Up @@ -223,6 +224,42 @@ struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
return ret;
}

/**
* get_mtd_device_nm - obtain a validated handle for an MTD device by
* device name
* @name: MTD device name to open
*
* This function returns MTD device description structure in case of
* success and an error code in case of failure.
*/

struct mtd_info *get_mtd_device_nm(const char *name)
{
int i;
struct mtd_info *mtd = ERR_PTR(-ENODEV);

mutex_lock(&mtd_table_mutex);

for (i = 0; i < MAX_MTD_DEVICES; i++) {
if (mtd_table[i] && !strcmp(name, mtd_table[i]->name)) {
mtd = mtd_table[i];
break;
}
}

if (i == MAX_MTD_DEVICES)
goto out_unlock;

if (!try_module_get(mtd->owner))
goto out_unlock;

mtd->usecount++;

out_unlock:
mutex_unlock(&mtd_table_mutex);
return mtd;
}

void put_mtd_device(struct mtd_info *mtd)
{
int c;
Expand Down Expand Up @@ -267,6 +304,7 @@ int default_mtd_writev(struct mtd_info *mtd, const struct kvec *vecs,
EXPORT_SYMBOL(add_mtd_device);
EXPORT_SYMBOL(del_mtd_device);
EXPORT_SYMBOL(get_mtd_device);
EXPORT_SYMBOL(get_mtd_device_nm);
EXPORT_SYMBOL(put_mtd_device);
EXPORT_SYMBOL(register_mtd_user);
EXPORT_SYMBOL(unregister_mtd_user);
Expand Down
1 change: 1 addition & 0 deletions trunk/include/linux/mtd/mtd.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ extern int add_mtd_device(struct mtd_info *mtd);
extern int del_mtd_device (struct mtd_info *mtd);

extern struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num);
extern struct mtd_info *get_mtd_device_nm(const char *name);

extern void put_mtd_device(struct mtd_info *mtd);

Expand Down

0 comments on commit b0d20f6

Please sign in to comment.