qcacld-3.0: Fix Datapath kernel checkpatch warnings in wdi_event.h

Fix Datapath kernel checkpatch warnings in wdi_event.h

Change-Id: I15295af3c6711b5b477739ec5741ba2b4e36b6d3
CRs-Fixed: 2032874
This commit is contained in:
Yun Park
2017-04-06 22:29:34 -07:00
کامیت شده توسط snandini
والد cb0bb18ba3
کامیت 196641d7b9

مشاهده پرونده

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
* Copyright (c) 2013-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -81,10 +81,14 @@ typedef void (*wdi_event_notify)(enum WDI_EVENT_NOTIFY notify,
*/
typedef struct wdi_event_subscribe_t {
wdi_event_cb callback; /* subscriber event callback structure head */
void *context; /* subscriber object that processes the event callback */
/* subscriber event callback structure head */
wdi_event_cb callback;
/* subscriber object that processes the event callback */
void *context;
struct {
/* private - the event subscriber SW shall not use this struct */
/*
* private - the event subscriber SW shall not use this struct
*/
struct wdi_event_subscribe_t *next;
struct wdi_event_subscribe_t *prev;
} priv;