All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] staging: vc04_services: clean up anonymous field declarations
@ 2017-03-10 16:38 Aishwarya Pant
  2017-03-10 16:39 ` [PATCH 1/2] staging: bcm2835-audio: remove " Aishwarya Pant
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Aishwarya Pant @ 2017-03-10 16:38 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: gregkh

This patchset replaces anonymous field declarations for the typedef
SERVICE_CREATION_T with explicit field declarations in the drivers 
bcm2835-audio and bcm2835-camera.

typedef struct {
        struct vchi_version version;
        int32_t service_id;
        VCHI_CONNECTION_T *connection;
        uint32_t rx_fifo_size;
        uint32_t tx_fifo_size;
        VCHI_CALLBACK_T callback;
        void *callback_param;
        /* client intends to receive bulk transfers of
                odd lengths or into unaligned buffers */
        int32_t want_unaligned_bulk_rx;
        /* client intends to transmit bulk transfers of
                odd lengths or out of unaligned buffers */
        int32_t want_unaligned_bulk_tx;
        /* client wants to check CRCs on (bulk) xfers.
                Only needs to be set at 1 end - will do both directions. */
        int32_t want_crc;
} SERVICE_CREATION_T;


** HERE ***

Aishwarya Pant (2):
  staging: bcm2835-audio: remove anonymous field declarations
  staging: bcm2835-camera: remove anonymous field declarations

 .../vc04_services/bcm2835-audio/bcm2835-vchiq.c      | 20 ++++++++++----------
 .../vc04_services/bcm2835-camera/mmal-vchiq.c        | 20 ++++++++++----------
 2 files changed, 20 insertions(+), 20 deletions(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-10 17:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-10 16:38 [PATCH 0/2] staging: vc04_services: clean up anonymous field declarations Aishwarya Pant
2017-03-10 16:39 ` [PATCH 1/2] staging: bcm2835-audio: remove " Aishwarya Pant
2017-03-10 16:58   ` [Outreachy kernel] " Julia Lawall
2017-03-10 16:39 ` [PATCH 2/2] staging: bcm2835-camera: " Aishwarya Pant
2017-03-10 16:50   ` [Outreachy kernel] " Julia Lawall
2017-03-10 17:08     ` Aishwarya Pant
2017-03-10 17:22       ` Julia Lawall
2017-03-10 17:00 ` [Outreachy kernel] [PATCH 0/2] staging: vc04_services: clean up " Julia Lawall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.