Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / tests / ktype.c
CommitLineData
34e49164
C
1typedef struct r1_private_data_s conf_t;
2
3static int run(mddev_t *mddev)
4{
5 conf_t *conf;
6 conf = kmalloc(sizeof(conf_t), GFP_KERNEL);
7 if (!conf) return;
8
9 memset(conf, 0, sizeof(*conf));
10}