Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27745
b: refs/heads/master
c: 396674e
h: refs/heads/master
i:
  27743: c800369
v: v3
  • Loading branch information
David Woodhouse committed May 8, 2006
1 parent 6d35e98 commit 74861ff
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5e535429a9117b8b6219da0e0cb087f52c0c9597
refs/heads/master: 396674e58fb9d01b7768ccb8db181aea8ebead0e
35 changes: 31 additions & 4 deletions trunk/drivers/mtd/devices/docprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,27 @@ static inline int __init doccheck(void __iomem *potential, unsigned long physadr

static int docfound;

#ifdef CONFIG_DOC2000
extern void DoC2k_init(struct mtd_info *);
#define doc2k_initfunc (&DoC2k_init)
#else
#define doc2k_initfunc NULL
#endif

#ifdef CONFIG_DOC2001
extern void DoCMil_init(struct mtd_info *);
#define docmil_initfunc (&DoCMil_init)
#else
#define docmil_initfunc NULL
#endif

#ifdef CONFIG_DOC2001PLUS
extern void DoCMilPlus_init(struct mtd_info *);
#define docmplus_initfunc (&DoCMilPlus_init)
#else
#define docmplus_initfunc NULL
#endif

static void __init DoC_Probe(unsigned long physadr)
{
void __iomem *docptr;
Expand Down Expand Up @@ -280,22 +301,26 @@ static void __init DoC_Probe(unsigned long physadr)
name="2000 TSOP";
im_funcname = "DoC2k_init";
im_modname = "doc2000";
initroutine = doc2k_initfunc;
break;

case DOC_ChipID_Doc2k:
name="2000";
im_funcname = "DoC2k_init";
im_modname = "doc2000";
initroutine = doc2k_initfunc;
break;

case DOC_ChipID_DocMil:
name="Millennium";
#ifdef DOC_SINGLE_DRIVER
im_funcname = "DoC2k_init";
im_modname = "doc2000";
initroutine = doc2k_initfunc;
#else
im_funcname = "DoCMil_init";
im_modname = "doc2001";
initroutine = docmil_initfunc;
#endif /* DOC_SINGLE_DRIVER */
break;

Expand All @@ -304,16 +329,18 @@ static void __init DoC_Probe(unsigned long physadr)
name="MillenniumPlus";
im_funcname = "DoCMilPlus_init";
im_modname = "doc2001plus";
initroutine = docmplus_initfunc;
break;
}

if (im_funcname)
#ifdef CONFIG_MODULES
if (im_funcname && !initroutine)
initroutine = symbol_get(im_funcname);
if (!initroutine) {
request_module(in_modname);
if (im_funcname && !initroutine) {
request_module(im_modname);
initroutine = symbol_get(im_funcname);
}

#endif
if (initroutine) {
(*initroutine)(mtd);
symbol_put_addr(initroutine);
Expand Down

0 comments on commit 74861ff

Please sign in to comment.