~apw/module-init-tools/fallback-framebuffer

« back to all changes in this revision

Viewing changes to depmod.h

  • Committer: Scott James Remnant
  • Date: 2010-06-07 15:31:43 UTC
  • mfrom: (152.1.47 upstream)
  • Revision ID: scott@netsplit.com-20100607153143-i83rihmpzqqq6goq
* New upstream release:
  - modules.devname support
  - softdep support
  - bug fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * depmod.h - prototypes for the depmod utility
 
3
 */
 
4
 
1
5
#ifndef MODINITTOOLS_DEPMOD_H
2
6
#define MODINITTOOLS_DEPMOD_H
3
7
#include "list.h"
5
9
 
6
10
struct module;
7
11
 
 
12
/* This is not the same as the module struct in the kernel built .ko files */
8
13
struct module
9
14
{
10
15
        /* Next module in list of all modules */
23
28
        /* Tables extracted from module by ops->fetch_tables(). */
24
29
        struct module_tables tables;
25
30
 
 
31
        /* Module operations, endian conversion required, etc. */
26
32
        struct elf_file *file;
27
33
 
28
34
        char *basename; /* points into pathname */