Skip to content
This repository has been archived by the owner on Dec 24, 2023. It is now read-only.

Commit

Permalink
s/const/define/g
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHargrave committed Sep 27, 2016
1 parent 579a8d3 commit 8968ffa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions amifldrv.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
# define mem_map_unreserve(p) clear_bit(PG_reserved, &((p)->flags))
#endif

static int const CMD_ALLOC = 0x4160;
static int const CMD_FREE = 0x4161;
static int const CMD_LOCK_KB = 0x4162;
static int const CMD_UNLOCK_KB = 0x4163;
#define CMD_ALLOC 0x4160
#define CMD_FREE 0x4161
#define CMD_LOCK_KB 0x4162
#define CMD_UNLOCK_KB 0x4163

/*
* ioctl data packet used to communicate instructions to the driver
Expand Down

0 comments on commit 8968ffa

Please sign in to comment.