~psusi/ubuntu/precise/dmraid/fix-gpt

« back to all changes in this revision

Viewing changes to 1.0.0.rc15/lib/format/register.h

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Iuculano, 6af052c
  • Date: 2009-03-25 22:34:59 UTC
  • mfrom: (2.1.9 sid)
  • mto: (2.4.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20090325223459-y54f0rmxem7htn6r
Tags: 1.0.0.rc15-6
[6af052c] Remove 15_isw_incorrect_status_fix.patch, it causes a
segfault. (Closes: #521104)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2004,2005  Heinz Mauelshagen, Red Hat GmbH.
 
3
 *                          All rights reserved.
 
4
 *
 
5
 * See file LICENSE at the top of this source tree for license information.
 
6
 */
 
7
 
 
8
/*
 
9
 * List of format handler register functions
 
10
 */
 
11
 
 
12
#ifndef _REGISTER_H_
 
13
#define _REGISTER_H_
 
14
 
 
15
#define xx(type)        { register_ ## type },
 
16
 
 
17
        /* Metadata format handlers. */
 
18
xx(asr)
 
19
        xx(ddf1)
 
20
        xx(hpt37x)
 
21
        xx(hpt45x)
 
22
        xx(isw)
 
23
        xx(jm)
 
24
        xx(lsi)
 
25
        xx(nv)
 
26
        xx(pdc)
 
27
        xx(sil)
 
28
        xx(via)
 
29
 
 
30
        /* DOS partition type handler. */
 
31
        xx(dos)
 
32
#undef  xx
 
33
#endif