summaryrefslogtreecommitdiff
path: root/bsd-core/drm_auth.c
diff options
context:
space:
mode:
authorvehemens <vehemens@verizon.net>2008-08-29 12:47:00 -0400
committerRobert Noland <rnoland@2hip.net>2008-08-29 15:46:05 -0400
commit71f0a3e389efb6c92a84299d05beb2a1bfa53469 (patch)
tree4538a4f855af41de31d4aa2bec64b282bc708ccb /bsd-core/drm_auth.c
parentb92f5577670f99ded76e201a71aaa23cce8f7577 (diff)
[FreeBSD] Replace typedefs on bsd.
Signed-off-by: Robert Noland <rnoland@2hip.net>
Diffstat (limited to 'bsd-core/drm_auth.c')
-rw-r--r--bsd-core/drm_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-core/drm_auth.c b/bsd-core/drm_auth.c
index 60af16cb..c11c887a 100644
--- a/bsd-core/drm_auth.c
+++ b/bsd-core/drm_auth.c
@@ -136,7 +136,7 @@ static int drm_remove_magic(struct drm_device *dev, drm_magic_t magic)
int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv)
{
static drm_magic_t sequence = 0;
- drm_auth_t *auth = data;
+ struct drm_auth *auth = data;
/* Find unique magic */
if (file_priv->magic) {
@@ -167,7 +167,7 @@ int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv)
int drm_authmagic(struct drm_device *dev, void *data,
struct drm_file *file_priv)
{
- drm_auth_t *auth = data;
+ struct drm_auth *auth = data;
drm_file_t *priv;
DRM_DEBUG("%u\n", auth->magic);