All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@kernel.org>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
	Andy Walls <awalls@md.metrocast.net>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michael Krufky <mkrufky@linuxtv.org>,
	Stefan Richter <stefanr@s5r6.in-berlin.de>,
	Tomasz Figa <tfiga@chromium.org>,
	linux-kernel@vger.kernel.org, linux-media@vger.kernel.org,
	linux1394-devel@lists.sourceforge.net
Subject: [PATCH 0/5] media: sort Makefile entries
Date: Wed,  9 Mar 2022 17:22:20 +0100	[thread overview]
Message-ID: <cover.1646842741.git.mchehab@kernel.org> (raw)

Entries at Makefiles end being merged on random order. 

Sort them on alphabetical order. I'm preparing similar changes for Kconfig
entries too.

Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Mauro Carvalho Chehab (5):
  media: xc2028: rename the driver from tuner-xc2028
  media: platform: Makefile: group some Makefile options
  media: Makefiles: remove extra spaces
  media: dvb-frontend: remove TUNER_ from some DVB frontend Kconfig
    options
  media: Makefiles: sort entries where it fits

 .../admin-guide/media/i2c-cardlist.rst        |   2 +-
 MAINTAINERS                                   |   2 +-
 drivers/media/Makefile                        |   4 +-
 drivers/media/cec/platform/Makefile           |  16 +-
 drivers/media/common/Makefile                 |   4 +-
 drivers/media/common/b2c2/Kconfig             |   4 +-
 drivers/media/common/videobuf2/Makefile       |   6 +-
 drivers/media/dvb-frontends/Kconfig           |   8 +-
 drivers/media/dvb-frontends/Makefile          | 192 +++++++++---------
 drivers/media/dvb-frontends/cx24113.h         |   2 +-
 drivers/media/dvb-frontends/dib0070.h         |   2 +-
 drivers/media/dvb-frontends/dib0090.h         |   2 +-
 drivers/media/dvb-frontends/itd1000.h         |   2 +-
 drivers/media/firewire/Makefile               |   2 +-
 drivers/media/i2c/Makefile                    |  92 ++++-----
 drivers/media/pci/Makefile                    |  18 +-
 drivers/media/pci/cx18/cx18-driver.c          |   2 +-
 drivers/media/pci/cx18/cx18-dvb.c             |   2 +-
 drivers/media/pci/cx18/cx18-gpio.c            |   2 +-
 drivers/media/pci/cx23885/Kconfig             |   2 +-
 drivers/media/pci/cx23885/cx23885-cards.c     |   2 +-
 drivers/media/pci/cx23885/cx23885-dvb.c       |   2 +-
 drivers/media/pci/cx23885/cx23885-video.c     |   2 +-
 drivers/media/pci/cx88/cx88.h                 |   2 +-
 drivers/media/pci/ivtv/ivtv-driver.c          |   2 +-
 drivers/media/pci/ivtv/ivtv-gpio.c            |   2 +-
 drivers/media/pci/saa7134/saa7134-cards.c     |   2 +-
 drivers/media/pci/saa7134/saa7134-dvb.c       |   2 +-
 drivers/media/platform/Makefile               | 147 ++++++--------
 drivers/media/radio/Makefile                  |  42 ++--
 drivers/media/rc/Makefile                     |  45 ++--
 drivers/media/rc/keymaps/Makefile             |  33 +--
 drivers/media/spi/Makefile                    |   5 +-
 drivers/media/test-drivers/Makefile           |  13 +-
 drivers/media/tuners/Makefile                 |  66 +++---
 drivers/media/tuners/tuner-types.c            |   2 +-
 .../{tuner-xc2028-types.h => xc2028-types.h}  |   6 +-
 .../media/tuners/{tuner-xc2028.c => xc2028.c} |   6 +-
 .../media/tuners/{tuner-xc2028.h => xc2028.h} |   2 +-
 drivers/media/tuners/xc4000.c                 |   2 +-
 drivers/media/usb/Makefile                    |  25 +--
 drivers/media/usb/dvb-usb/Kconfig             |   6 +-
 drivers/media/usb/dvb-usb/cxusb.c             |   2 +-
 drivers/media/usb/dvb-usb/dib0700_devices.c   |   2 +-
 drivers/media/usb/em28xx/em28xx-i2c.c         |   2 +-
 drivers/media/usb/em28xx/em28xx.h             |   2 +-
 drivers/media/usb/gspca/Makefile              |  88 ++++----
 drivers/media/usb/tm6000/tm6000-cards.c       |   2 +-
 drivers/media/usb/tm6000/tm6000-dvb.c         |   2 +-
 drivers/media/usb/tm6000/tm6000-i2c.c         |   2 +-
 drivers/media/v4l2-core/Makefile              |  29 ++-
 drivers/media/v4l2-core/tuner-core.c          |   2 +-
 52 files changed, 450 insertions(+), 465 deletions(-)
 rename drivers/media/tuners/{tuner-xc2028-types.h => xc2028-types.h} (96%)
 rename drivers/media/tuners/{tuner-xc2028.c => xc2028.c} (99%)
 rename drivers/media/tuners/{tuner-xc2028.h => xc2028.h} (99%)

-- 
2.35.1



             reply	other threads:[~2022-03-09 16:33 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-09 16:22 Mauro Carvalho Chehab [this message]
2022-03-09 16:22 ` [PATCH 1/5] media: xc2028: rename the driver from tuner-xc2028 Mauro Carvalho Chehab
2022-03-09 16:22 ` [PATCH 2/5] media: platform: Makefile: group some Makefile options Mauro Carvalho Chehab
2022-03-09 16:22 ` [PATCH 3/5] media: Makefiles: remove extra spaces Mauro Carvalho Chehab
2022-03-09 16:22 ` [PATCH 4/5] media: dvb-frontend: remove TUNER_ from some DVB frontend Kconfig options Mauro Carvalho Chehab
2022-03-09 16:22 ` [PATCH 5/5] media: Makefiles: sort entries where it fits Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1646842741.git.mchehab@kernel.org \
    --to=mchehab@kernel.org \
    --cc=awalls@md.metrocast.net \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux1394-devel@lists.sourceforge.net \
    --cc=m.szyprowski@samsung.com \
    --cc=mkrufky@linuxtv.org \
    --cc=stefanr@s5r6.in-berlin.de \
    --cc=tfiga@chromium.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.