Skip to content

Commit

Permalink
staging: csr: oska: remove all.h and types.h
Browse files Browse the repository at this point in the history
No one is using these (with one minor exception that was fixed in
list.c) so remove the header files.

Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com>
Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com>
Cc: Riku Mettälä <riku.mettala@bluegiga.com>
Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Jul 20, 2012
1 parent 44bb4ac commit 9f47550
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 78 deletions.
60 changes: 0 additions & 60 deletions drivers/staging/csr/oska/all.h

This file was deleted.

4 changes: 0 additions & 4 deletions drivers/staging/csr/oska/list.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
*/

#include <stddef.h>

#include "list.h"
#include "util.h"

/**
* Initialize an empty list.
Expand All @@ -37,8 +35,6 @@ int os_list_empty(struct os_list *list)
static void os_list_add(struct os_list_node *prev, struct os_list_node *new,
struct os_list_node *next)
{
OS_ASSERT(new->next == NULL && new->prev == NULL);

next->prev = new;
new->next = next;
new->prev = prev;
Expand Down
14 changes: 0 additions & 14 deletions drivers/staging/csr/oska/types.h

This file was deleted.

0 comments on commit 9f47550

Please sign in to comment.